diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-10-04 02:11:27 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-10-24 18:39:36 -0700 |
commit | 15594eaf87066abc8cf36520a1ad95e0c52da517 (patch) | |
tree | 08295f62f03b2816860903f83dcb10de8d48daf7 /configure | |
parent | bb85e7751f1bd224fbce370ad84d8ce774e2d69a (diff) | |
download | node-new-15594eaf87066abc8cf36520a1ad95e0c52da517.tar.gz |
Replace WAF with make/autoconf
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/configure b/configure deleted file mode 100755 index de002e39b2..0000000000 --- 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 $? |