Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv28115
Modified Files:
cd_cleanup
Log Message:
works better this way....
Index: cd_cleanup
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- cd_cleanup 14 Dec 2011 14:28:49 -0000 1.18
+++ cd_cleanup 15 Dec 2011 01:08:44 -0000 1.19
@@ -16,7 +16,7 @@
case $1 in
install )
- find $CDDIR/usr/include/ -maxdepth 1 | grep -v "^python" | xargs -n 1 rm -rf
+ ls -1 $CDDIR/usr/include/* | grep -v "^python" | xargs -n 1 rm -rf
find $CDDIR -type f -name '*.la' | grep -v Magick | xargs -n 1 rm -f
find $CDDIR -type f -name '*.a' | xargs -n 1 rm -f
find $CDDIR -type f -exec strip --strip-debug '{}' ';'
|