Call configure from bootstrap
authorClinton Ebadi <clinton@unknownlamer.org>
Sun, 10 May 2020 21:24:50 +0000 (17:24 -0400)
committerClinton Ebadi <clinton@unknownlamer.org>
Sun, 10 May 2020 21:24:50 +0000 (17:24 -0400)
When developing, VERSION only updates when configure.ac is
regenerated, and I don't see any downside to just calling configure
from bootstrap. Pass all args through to configure.

bootstrap

index dbdfdfe..2d5d4df 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -3,4 +3,4 @@
 # need --force to ensure VERSION is updated since it is auto-generated
 #  by git-version-gen, and configure.ac mtime doesn't change on version
 #  changes anymore.
-gnulib-tool --update && autoreconf --force --install --symlink
\ No newline at end of file
+gnulib-tool --update && autoreconf --force --install --symlink && ./configure $@
\ No newline at end of file