summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-04 01:40:09 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-04 01:40:09 +0000
commitef1b9c7ca4c6234c02d02d126ad84a307579aafc (patch)
tree52cd9238da399c770de554da51932ccef2e5c1a3 /tools
parent0143a934db88b4dac215a14f9c1c1cedd2999d6b (diff)
fix find(1) syntax when used for cleanup (again)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12167 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build-ardour-stack2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build-ardour-stack b/tools/build-ardour-stack
index 5f3c34570a..11851379f3 100755
--- a/tools/build-ardour-stack
+++ b/tools/build-ardour-stack
@@ -39,7 +39,7 @@ if [ $clean ] ; then
echo "This doesn't appear to be your source directory. Don't run --clean here."
exit 1
fi
- rm -rf `find -maxdepth 1 -type d | grep -v -e "gtk+" -e "^.$"`
+ rm -rf `find . -maxdepth 1 -type d | grep -v -e "gtk+" -e "^.$"`
# sudo required because of its use during the python install step
sudo rm -rf $PREFIX
exit 0