diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-14 16:00:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-14 16:00:48 +0000 |
commit | e0b24e3a1182cd6c8ef4e629b3ef256bc39c8341 (patch) | |
tree | 1513ccc96f05a9316b137e6ddb976f8b809da0bd /core/abuild/find-name.patch | |
parent | 403ccb271c7ec0d7c48a4c25895686096005a71a (diff) | |
download | aports-e0b24e3a1182cd6c8ef4e629b3ef256bc39c8341.tar.bz2 aports-e0b24e3a1182cd6c8ef4e629b3ef256bc39c8341.tar.xz |
core/abuild: fit annoying bug in doc()
Diffstat (limited to 'core/abuild/find-name.patch')
-rw-r--r-- | core/abuild/find-name.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/abuild/find-name.patch b/core/abuild/find-name.patch new file mode 100644 index 0000000000..8879d962e0 --- /dev/null +++ b/core/abuild/find-name.patch @@ -0,0 +1,11 @@ +--- abuild/abuild.orig Fri Nov 14 15:54:17 2008 ++++ abuild/abuild Fri Nov 14 15:55:05 2008 +@@ -315,7 +315,7 @@ + rm -f "$subpkgdir/usr/share/info/dir" + + # compress info and man pages +- find "$subpkgdir/usr/share" \( -name '*.info' -o name '*.info-[1-9]' \ ++ find "$subpkgdir/usr/share" \( -name '*.info' -o -name '*.info-[1-9]' \ + -o -name '*.[1-9]' \) -exec gzip {} \; + + # remove if empty, ignore error (not empty) |