summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2020-08-29 11:12:08 +0200
committerMarc Hoersken <info@marc-hoersken.de>2020-08-29 21:43:49 +0200
commit8b69ac0c10e8c718e97c3e0465629a77d499aace (patch)
treef1ed234436d293cfeb19e263bdeea015e48f956b /buildconf
parentde77ae0a76fb2c6b099ddbb4c86a38be85d5dfe2 (diff)
downloadcurl-8b69ac0c10e8c718e97c3e0465629a77d499aace.tar.gz
buildconf: exec autoreconf to avoid additional process
Also make buildconf exit with the return code of autoreconf. Reviewed-by: Daniel Stenberg Follow up to #5853 Closes #5890
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index 4d3421522..4e4c17e99 100755
--- 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 "${@}"