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-04 13:11:27 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-25 05:39:36 +0400
commit15594eaf87066abc8cf36520a1ad95e0c52da517 (patch)
tree08295f62f03b2816860903f83dcb10de8d48daf7 /configure
parentbb85e7751f1bd224fbce370ad84d8ce774e2d69a (diff)
Replace WAF with make/autoconf
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure21
1 files changed, 0 insertions, 21 deletions
diff --git a/configure b/configure
deleted file mode 100755
index de002e39b26..00000000000
--- a/configure
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-
-# v8 doesn't like ccache
-if [ ! -z "`echo $CC | grep ccache`" ]; then
- echo "Error: V8 doesn't like cache. Please set your CC env var to 'gcc'"
- echo " (ba)sh: export CC=gcc"
- exit 1
-fi
-
-CUR_DIR=$PWD
-
-#possible relative path
-WORKINGDIR=`dirname $0`
-cd "$WORKINGDIR"
-#abs path
-WORKINGDIR=`pwd`
-cd "$CUR_DIR"
-
-"${WORKINGDIR}/tools/waf-light" --jobs=1 configure $*
-
-exit $?