From 8b69ac0c10e8c718e97c3e0465629a77d499aace Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Sat, 29 Aug 2020 11:12:08 +0200 Subject: 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 --- buildconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "${@}" -- cgit v1.2.1