mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
17 lines
197 B
Bash
Executable File
17 lines
197 B
Bash
Executable File
#! /bin/sh
|
|
|
|
CUR_DIR=$PWD
|
|
|
|
#possible relative path
|
|
WORKINGDIR=`dirname $0`
|
|
cd $WORKINGDIR
|
|
#abs path
|
|
WORKINGDIR=`pwd`
|
|
cd $CUR_DIR
|
|
|
|
WAF="${WORKINGDIR}/tools/waf-light"
|
|
|
|
"${WAF}" configure $*
|
|
|
|
exit $?
|