summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-05-28 09:25:17 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2012-05-28 09:25:17 +0200
commit8a1e83823de62f55ac06f4a67452ee7cc1ce3ace (patch)
tree9fc699c036519693d6fd0a8c35d2f006abeae733 /package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch
parent7643670052a7adc1c2a5f275664774c6d50e6a3d (diff)
busybox: bump 1.20.x version
Bugfix release. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch')
-rw-r--r--package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch b/package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch
deleted file mode 100644
index f913cda1b..000000000
--- a/package/busybox/busybox-1.20.0/busybox-1.20.0-find.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- busybox-1.20.0/findutils/find.c
-+++ busybox-1.20.0-find/findutils/find.c
-@@ -831,6 +831,11 @@ static action*** parse_params(char **arg
- PARM_name ,
- PARM_iname ,
- IF_FEATURE_FIND_PATH( PARM_path ,)
-+#if ENABLE_DESKTOP
-+ /* -wholename is a synonym for -path */
-+ /* We support it because Linux kernel's "make tags" uses it */
-+ IF_FEATURE_FIND_PATH( PARM_wholename ,)
-+#endif
- IF_FEATURE_FIND_PATH( PARM_ipath ,)
- IF_FEATURE_FIND_REGEX( PARM_regex ,)
- IF_FEATURE_FIND_TYPE( PARM_type ,)
-@@ -869,6 +874,9 @@ static action*** parse_params(char **arg
- "-name\0"
- "-iname\0"
- IF_FEATURE_FIND_PATH( "-path\0" )
-+#if ENABLE_DESKTOP
-+ IF_FEATURE_FIND_PATH( "-wholename\0")
-+#endif
- IF_FEATURE_FIND_PATH( "-ipath\0" )
- IF_FEATURE_FIND_REGEX( "-regex\0" )
- IF_FEATURE_FIND_TYPE( "-type\0" )
-@@ -1076,7 +1084,7 @@ static action*** parse_params(char **arg
- ap->iname = (parm == PARM_iname);
- }
- #if ENABLE_FEATURE_FIND_PATH
-- else if (parm == PARM_path || parm == PARM_ipath) {
-+ else if (parm == PARM_path IF_DESKTOP(|| parm == PARM_wholename) || parm == PARM_ipath) {
- action_path *ap;
- dbg("%d", __LINE__);
- ap = ALLOC_ACTION(path);