]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
buildconf: exec autoreconf to avoid additional process
authorMarc Hoersken <info@marc-hoersken.de>
Sat, 29 Aug 2020 09:12:08 +0000 (11:12 +0200)
committerMarc Hoersken <info@marc-hoersken.de>
Sat, 29 Aug 2020 19:43:49 +0000 (21:43 +0200)
Also make buildconf exit with the return code of autoreconf.

Reviewed-by: Daniel Stenberg
Follow up to #5853
Closes #5890

buildconf

index 4d342152212756f59db1dc9915ef6bd94f1e8d2c..4e4c17e99919804a34846ed212e25445355afd06 100755 (executable)
--- a/buildconf
+++ b/buildconf
@@ -1,4 +1,4 @@
 #!/bin/sh
 
 echo "*** Do not use buildconf. Instead, just use: autoreconf -fi" >&2
-${AUTORECONF:-autoreconf} -fi "${@}"
+exec ${AUTORECONF:-autoreconf} -fi "${@}"