summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal (scarabeus) <tomas.chvatal@gmail.com>2008-10-03 23:30:17 +0200
committerTomas Chvatal (scarabeus) <tomas.chvatal@gmail.com>2008-10-03 23:30:17 +0200
commitcaf6b6d1f9528dd6d8cd02ab6d2173a0f5df2636 (patch)
treee206009d6e8848c44a3d9a31b3d5280963adaf95
parentaa7894897859143e9be01d47e1a0937c198d9c98 (diff)
Fixup last commit, missed one file :]
-rwxr-xr-xclean.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/clean.sh b/clean.sh
index 83dea23..ccc029c 100755
--- a/clean.sh
+++ b/clean.sh
@@ -5,7 +5,7 @@ make clean
find ./ -type d -name CMakeFiles -print |xargs -i rm {} -rf
# remove cmake files
find ./ \( -type f -name \*.cmake -print , -type f -name CMakeCache.txt -print , -type f -name Makefile -print \) |grep -v "./cmake" |xargs -i rm {} -rf
-find ./ -type f -name cmake_install.cmake |xargs -i rm {} -rf
+find ./ \( -type f -name cmake_install.cmake -print , -type f -name install_manifest.txt -print \) |xargs -i rm {} -rf
# remove precompiled in files
find ./ -name \*.in -print |while read r; do rm -rf ${r/\.in/}; done