diff options
-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]) |