blob: 27e555a0476072f410be321e26a7164764fcb839 (
plain)
1
2
3
4
5
6
7
8
9
10
|
diff -up imake-1.0.2/cleanlinks.jx imake-1.0.2/cleanlinks
--- imake-1.0.2/cleanlinks.jx 2004-12-03 19:42:46.000000000 -0500
+++ imake-1.0.2/cleanlinks 2009-02-08 02:17:08.000000000 -0500
@@ -23,5 +23,5 @@ find . -type l -print |
echo Removing empty directories ...
#find . -type d -depth -print | xargs rmdir > /dev/null 2>&1
-find . -type d -depth -empty -print -exec rmdir {} \;
+find . -depth -type d -empty -print -exec rmdir {} \;
exit 0
|