From: Marc Hoersken Date: Sat, 29 Aug 2020 09:12:08 +0000 (+0200) Subject: buildconf: exec autoreconf to avoid additional process X-Git-Tag: curl-7_73_0~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b69ac0c10e8c718e97c3e0465629a77d499aace;p=thirdparty%2Fcurl.git 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 --- diff --git a/buildconf b/buildconf index 4d34215221..4e4c17e999 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 "${@}"