mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04: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 $?
|