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
This commit is contained in:
Marc Hoersken 2020-08-29 11:12:08 +02:00
parent de77ae0a76
commit 8b69ac0c10
No known key found for this signature in database
GPG Key ID: 61E03CBED7BC859E
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
echo "*** Do not use buildconf. Instead, just use: autoreconf -fi" >&2
${AUTORECONF:-autoreconf} -fi "${@}"
exec ${AUTORECONF:-autoreconf} -fi "${@}"