summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2018-12-22 18:51:59 -0800
committerH. Peter Anvin <hpa@zytor.com>2018-12-22 18:51:59 -0800
commit54d5078c11491a409339b8df22be59168c3c137c (patch)
tree1220d89b849ef735a616b93e4361668030410ec9 /autogen.sh
parentb0121dc312a83ab4912769e36c9f2cbe9493545d (diff)
downloadnasm-54d5078c11491a409339b8df22be59168c3c137c.tar.gz
autogen.sh: add code to re-run configure afterwards
Add code to autogen.sh to (re-)run configure, with preserved configuration. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index b7633c66..2b04f995 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,6 +2,12 @@
#
# Run this script to regenerate autoconf files
#
+recheck=false
+if [ x"$1" = x--recheck ]; then
+ recheck=true
+ config=$(sh config.status --config 2>/dev/null)
+fi
+
mkdir -p autoconf autoconf/aux config
autolib="`automake --print-libdir`"
for prg in install-sh compile config.guess config.sub; do
@@ -18,3 +24,8 @@ rm -rf autoconf/m4.old
autoheader -B autoconf
autoconf -B autoconf
rm -rf autom4te.cache config.log config.status config/config.h Makefile
+
+if $recheck; then
+ # This bizarre statement has to do with how config.status quotes its output
+ echo exec sh configure $config | sh -
+fi