Browse Source

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
Marc Hoersken 3 years ago
parent
commit
8b69ac0c10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      buildconf

+ 1 - 1
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 "${@}"