summaryrefslogtreecommitdiff
path: root/packaging/imake-1.0.2-find-pedantry.patch
diff options
context:
space:
mode:
authorHyungKyu Song <hk76.song@samsung.com>2013-02-16 00:06:42 +0900
committerHyungKyu Song <hk76.song@samsung.com>2013-02-16 00:06:42 +0900
commit8111ce6e75c0a1354dd4a1ad7a6e7cbf60bc580c (patch)
treee87d45124361001d2c557e87b246482b77b6008a /packaging/imake-1.0.2-find-pedantry.patch
parenta1a2b2765e25bc20d6f249a467755455b9b3b6b3 (diff)
downloadimake-tizen_2.0.tar.gz
imake-tizen_2.0.tar.bz2
imake-tizen_2.0.zip
Diffstat (limited to 'packaging/imake-1.0.2-find-pedantry.patch')
-rw-r--r--packaging/imake-1.0.2-find-pedantry.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/packaging/imake-1.0.2-find-pedantry.patch b/packaging/imake-1.0.2-find-pedantry.patch
new file mode 100644
index 0000000..27e555a
--- /dev/null
+++ b/packaging/imake-1.0.2-find-pedantry.patch
@@ -0,0 +1,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