diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-02-19 22:28:44 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-02-19 22:28:44 +0000 |
commit | c4db0484c1295a1bdd47f76aa90e7e1faad6f98c (patch) | |
tree | 92546de21f6c18bc9f19b1a9ab71fa276db97aee /app-text/a2ps/files | |
parent | Version bump, stable x86, drop old (diff) | |
download | historical-c4db0484c1295a1bdd47f76aa90e7e1faad6f98c.tar.gz historical-c4db0484c1295a1bdd47f76aa90e7e1faad6f98c.tar.bz2 historical-c4db0484c1295a1bdd47f76aa90e7e1faad6f98c.zip |
Fix chmod thanks to Adrian Frith <adrian@leg.uct.ac.za> in bug 167670
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'app-text/a2ps/files')
-rw-r--r-- | app-text/a2ps/files/a2ps-4.13-manpage-chmod.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-text/a2ps/files/a2ps-4.13-manpage-chmod.patch b/app-text/a2ps/files/a2ps-4.13-manpage-chmod.patch new file mode 100644 index 000000000000..e0c61124e9df --- /dev/null +++ b/app-text/a2ps/files/a2ps-4.13-manpage-chmod.patch @@ -0,0 +1,12 @@ +diff -ur a2ps-4.13.orig/man/Makefile.maint a2ps-4.13/man/Makefile.maint +--- a2ps-4.13.orig/man/Makefile.maint 2002-03-04 20:46:26.000000000 +0200 ++++ a2ps-4.13/man/Makefile.maint 2007-02-19 21:50:29.000000000 +0200 +@@ -20,7 +20,7 @@ + --include=$(basename $@).x \ + --include=common.x \ + $(executable) > $@-t || exit 1; \ +- chmod -w $@-t || exit 1; \ ++ chmod a-w $@-t || exit 1; \ + rm -f $@ || exit 1; \ + mv $@-t $@ || exit 1; \ + else \ |