From 5175864c0e11cb06a6836d81ab64eefb9914a71e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 25 Oct 2010 19:25:49 -0700 Subject: [PATCH] exec instead of sh a the configure.real script --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index 3c5b4fa40a..009f4f954d 100755 --- a/configure +++ b/configure @@ -1,7 +1,6 @@ #!/bin/sh - cd $(dirname "$0") autoconf --output configure.real -sh ./configure.real "$@" +exec ./configure.real "$@"