Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-10-26 06:25:49 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-26 06:52:35 +0400
commit5175864c0e11cb06a6836d81ab64eefb9914a71e (patch)
tree11ecabb1b4c690d46658113c36f3e5a764e85c1d /configure
parent43022eabf79f3fa736684ccb1273804cbb31db95 (diff)
exec instead of sh a the configure.real script
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index 3c5b4fa40a9..009f4f954d9 100755
--- a/configure
+++ b/configure
@@ -1,7 +1,6 @@
#!/bin/sh
-
cd $(dirname "$0")
autoconf --output configure.real
-sh ./configure.real "$@"
+exec ./configure.real "$@"