diff options
author | David Robillard <d@drobilla.net> | 2008-09-07 16:55:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-07 16:55:11 +0000 |
commit | 4d43041083d7cff16c832c50689d598b7ff718f9 (patch) | |
tree | bad04c74dc460d9b479db7b530b9d072ceee6c44 | |
parent | b159ab36fe7da9bde9e778ee080408a134a4079e (diff) | |
download | raul-4d43041083d7cff16c832c50689d598b7ff718f9.tar.gz raul-4d43041083d7cff16c832c50689d598b7ff718f9.tar.bz2 raul-4d43041083d7cff16c832c50689d598b7ff718f9.zip |
Fix make 'deb'.
git-svn-id: http://svn.drobilla.net/lad/raul@1472 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | Makefile.am | 8 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 194dcfb..c9ab54e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,9 +27,9 @@ docs: deb: if [ -e debian ]; then \ - echo "ERROR: ./debian exists, you must move it out of the way. \ + echo "ERROR: ./debian exists, you must move it out of the way."; \ else \ - ln -s debian-sid debian \ - dpkg-buildpackage -sn \ - rm debian + ln -s debian-sid debian; \ + dpkg-buildpackage -sn; \ + rm debian; \ fi diff --git a/configure.ac b/configure.ac index f068b9c..7959bac 100644 --- a/configure.ac +++ b/configure.ac @@ -175,7 +175,7 @@ AM_CONDITIONAL(BUILD_UNIT_TESTS, [test "$build_unit_tests" = "yes"]) # RAUL AC_CONFIG_FILES([Makefile]) -AC_CONFIG_FILES([debian/Makefile]) +AC_CONFIG_FILES([debian-sid/Makefile]) AC_CONFIG_FILES([doc/Makefile]) AC_CONFIG_FILES([doc/reference.doxygen]) AC_CONFIG_FILES([raul.pc]) |