diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-08-29 11:12:08 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-08-29 21:43:49 +0200 |
commit | 8b69ac0c10e8c718e97c3e0465629a77d499aace (patch) | |
tree | f1ed234436d293cfeb19e263bdeea015e48f956b /buildconf | |
parent | de77ae0a76fb2c6b099ddbb4c86a38be85d5dfe2 (diff) | |
download | curl-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-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ #!/bin/sh echo "*** Do not use buildconf. Instead, just use: autoreconf -fi" >&2 -${AUTORECONF:-autoreconf} -fi "${@}" +exec ${AUTORECONF:-autoreconf} -fi "${@}" |