summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorgls <gls>2010-05-15 20:26:02 +0000
committergls <gls>2010-05-15 20:26:02 +0000
commit45336d34a00147a6be752c47436e68e4cd969f81 (patch)
treec3021aa74a1be85a179a2a5b2e5776a35b5a8855 /textproc
parenteea25e909e7a908023a2419bf1c81207460aa631 (diff)
downloadpkgsrc-45336d34a00147a6be752c47436e68e4cd969f81.tar.gz
Updated to 8.5.3.
Patches no longer required.
Diffstat (limited to 'textproc')
-rw-r--r--textproc/asciidoc/patches/patch-aa28
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.