stop if git tags were updated, allow non-force autoconf, enhanced build speed, include autostart instruction in postinst and adjusted start hint to systemd

This commit is contained in:
john30
2017-12-30 13:26:02 +01:00
parent 60a18d15e2
commit 88e4c7eec7
3 changed files with 69 additions and 13 deletions
+6 -1
View File
@@ -4,5 +4,10 @@ test -n "$srcdir" || srcdir=.
mkdir -p "$srcdir/build"
autoreconf --force --install --verbose "$srcdir"
if [ "x$1" = "x--dontforce" ]; then
shift
autoreconf --install --verbose "$srcdir"
else
autoreconf --force --install --verbose "$srcdir"
fi
test -n "$NOCONFIGURE" || "$srcdir/configure" "--prefix=/usr" "--sysconfdir=/etc" "--localstatedir=/var" "$@"