431a30b3a9
git-svn-id: svn://localhost/ardour2/branches/3.0@11141 d708f5d6-7413-0410-9779-e7cbd77b26cf
18 lines
238 B
Bash
18 lines
238 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) Paul Davis 2011-2012
|
|
|
|
while true ; do
|
|
if [ -x ./waf ] ; then
|
|
./waf "$@"
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|
|
fi
|
|
cd ..
|
|
if [ `pwd` = '/' ] ; then break; fi
|
|
done
|
|
|