diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-22 06:03:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-22 06:03:48 +0000 |
commit | ca7768d29fa0bfa77ffdd87ae9281b9670c32402 (patch) | |
tree | 543bbc8c6533de220c2b8e847f8e658688dfbdb7 | |
parent | initial import #110010 (diff) | |
download | gentoo-2-ca7768d29fa0bfa77ffdd87ae9281b9670c32402.tar.gz gentoo-2-ca7768d29fa0bfa77ffdd87ae9281b9670c32402.tar.bz2 gentoo-2-ca7768d29fa0bfa77ffdd87ae9281b9670c32402.zip |
add back fixes to use posix -P with cp instead of gnu -d
(Portage version: 2.0.53_rc6)
-rw-r--r-- | games-misc/fortune-mod/files/fortune-mod-1.99.1-gentoo.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/games-misc/fortune-mod/files/fortune-mod-1.99.1-gentoo.patch b/games-misc/fortune-mod/files/fortune-mod-1.99.1-gentoo.patch index 2827ff55c7aa..d9b27fb350e5 100644 --- a/games-misc/fortune-mod/files/fortune-mod-1.99.1-gentoo.patch +++ b/games-misc/fortune-mod/files/fortune-mod-1.99.1-gentoo.patch @@ -1,3 +1,25 @@ +--- fortune-mod-1.99.1/datfiles/Makefile ++++ fortune-mod-1.99.1/datfiles/Makefile +@@ -58,7 +58,7 @@ + if [ $(WEB) = 1 ] ; then cd html && $(MAKE) install ; fi + for i in $(COOKIES) ; do \ + install -m 0644 $$i $$i.dat $(COOKIEDIR) || exit $? ; \ +- cp -d $$i.u8 $(COOKIEDIR) ; \ ++ cp -P $$i.u8 $(COOKIEDIR) ; \ + done + + clean: +--- fortune-mod-1.99.1/datfiles/off/Makefile ++++ fortune-mod-1.99.1/datfiles/off/Makefile +@@ -38,7 +38,7 @@ + install -m 0755 -d $(OCOOKIEDIR) + for i in $(OCOOKIES) ; \ + do install -m 0644 $$i $$i.dat $(OCOOKIEDIR) || exit $$? ; \ +- cp -d $$i.u8 $(OCOOKIEDIR) ; \ ++ cp -P $$i.u8 $(OCOOKIEDIR) ; \ + done + + clean: --- fortune-mod-1.99.1/Makefile +++ fortune-mod-1.99.1/Makefile @@ -65,8 +65,7 @@ |