diff options
author | gls <gls@pkgsrc.org> | 2010-05-15 20:26:02 +0000 |
---|---|---|
committer | gls <gls@pkgsrc.org> | 2010-05-15 20:26:02 +0000 |
commit | 373aa54ae90e24f1d8929d9341600bbafd5b91ba (patch) | |
tree | c3021aa74a1be85a179a2a5b2e5776a35b5a8855 /textproc/asciidoc | |
parent | d21c510f390b9954f9a92795a1251bc119e582f1 (diff) | |
download | pkgsrc-373aa54ae90e24f1d8929d9341600bbafd5b91ba.tar.gz |
Updated to 8.5.3.
Patches no longer required.
Diffstat (limited to 'textproc/asciidoc')
-rw-r--r-- | textproc/asciidoc/patches/patch-aa | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/textproc/asciidoc/patches/patch-aa b/textproc/asciidoc/patches/patch-aa deleted file mode 100644 index 47570655645..00000000000 --- a/textproc/asciidoc/patches/patch-aa +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2009/03/06 15:17:07 wiz Exp $ - -a2x uses the '-u' argument to cp, which POSIX does not specify: - http://www.opengroup.org/onlinepubs/009695399/utilities/cp.html - -Filed upstream on 20080609 as -https://sourceforge.net/tracker/index.php?func=detail&aid=1989227&group_id=67797&atid=519005 - ---- a2x.orig 2008-12-31 02:46:28.000000000 +0000 -+++ a2x -@@ -415,7 +415,7 @@ function copy_stylesheet() - if [[ "$src" -ef "$dst" ]]; then - return - fi -- execute_command_2 "cp -u \"$src\" \"$dst\"" -+ execute_command_2 "cp \"$src\" \"$dst\"" - } - - # Copy distribution admonition and navigation icons to destination directory -@@ -441,7 +441,7 @@ function copy_icons() - else - execute_command_2 "mkdir -p \"$dst\"" - fi -- execute_command_2 "cp -rfu \"$src/\"* \"$dst\"" -+ execute_command_2 "cp -rf \"$src/\"* \"$dst\"" - } - - # Run xmllint(1) checking of $1 file if xmllint checking is enabled. |