aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gpg-remailer/avoid-gnuisms.patch
diff options
context:
space:
mode:
authorTBK <tbk@jjtc.dk>2018-04-06 05:11:40 +0200
committerTimo Teräs <timo.teras@iki.fi>2018-04-09 10:34:48 +0000
commit96d9c22beb2b5e6a7e472056945f5ba499a09906 (patch)
tree24fc0a0f0132a9fb669ac5f0202b9aa04013eb80 /testing/gpg-remailer/avoid-gnuisms.patch
parent5f20fd8defb3b5d0cde1e1f9cad124d32eea7508 (diff)
downloadaports-96d9c22beb2b5e6a7e472056945f5ba499a09906.tar.bz2
aports-96d9c22beb2b5e6a7e472056945f5ba499a09906.tar.xz
testing/gpg-remailer: upgrade to 3.04.03
Diffstat (limited to 'testing/gpg-remailer/avoid-gnuisms.patch')
-rw-r--r--testing/gpg-remailer/avoid-gnuisms.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/testing/gpg-remailer/avoid-gnuisms.patch b/testing/gpg-remailer/avoid-gnuisms.patch
deleted file mode 100644
index 3e189be49a..0000000000
--- a/testing/gpg-remailer/avoid-gnuisms.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/icmake/installer
-+++ b/icmake/installer
-@@ -5,14 +5,14 @@
- exit 0
- fi
-
--for src in `find -mindepth 1 -type d` # create missing target dirs
-+for src in `find . -mindepth 1 -type d` # create missing target dirs
- do
- [ ! -e $1$src ] && mkdir -p $1$src
- done
-
--for file in `find -type f -or -type l`
-+for file in `find . -type f -or -type l`
- do
- # echo installing $1$file
-- cp -d --preserve=timestamps $file $1$file
-+ cp -H $file $1$file
- done
-
---- a/icmake/findall
-+++ b/icmake/findall
-@@ -15,7 +15,7 @@
- if (pattern != "")
- pattern = "-name '" + pattern + "'";
-
-- entries = backtick(cmd + " " + pattern + " -printf \"%f\\n\"");
-+ entries = backtick(cmd + " " + pattern + " -exec basename {} \\;");
-
- for (idx = listlen(entries); idx--; )
- ret += (list)cutEoln(entries[idx]);