summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPPed72 <paolo.pedroni@iol.it>2016-05-03 11:33:30 +0200
committerAnthony G. Basile <blueness@gentoo.org>2016-05-12 08:48:13 -0400
commit9d904eac76ee1ac31db62713a71b0c5be3ee10d0 (patch)
treeaa76755d6152724ead353c853ae07328fa23154d /app-admin/webapp-config/files
parentsys-kernel/hardened-sources: version bump to 4.5.4 (diff)
downloadgentoo-9d904eac76ee1ac31db62713a71b0c5be3ee10d0.tar.gz
gentoo-9d904eac76ee1ac31db62713a71b0c5be3ee10d0.tar.bz2
gentoo-9d904eac76ee1ac31db62713a71b0c5be3ee10d0.zip
app-admin/webapp-config: fix bashism in tests, bug #561798
Diffstat (limited to 'app-admin/webapp-config/files')
-rw-r--r--app-admin/webapp-config/files/webapp-config-1.54-fix-bashism.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/app-admin/webapp-config/files/webapp-config-1.54-fix-bashism.patch b/app-admin/webapp-config/files/webapp-config-1.54-fix-bashism.patch
new file mode 100644
index 000000000000..9958c142d4a7
--- /dev/null
+++ b/app-admin/webapp-config/files/webapp-config-1.54-fix-bashism.patch
@@ -0,0 +1,12 @@
+diff -Naur WebappConfig.old/ebuild.py WebappConfig/ebuild.py
+--- WebappConfig/ebuild.py
++++ WebappConfig/ebuild.py
+@@ -101,7 +101,7 @@
+
+ for i in post_instructions:
+ i = i.replace('"', '\\"')
+- post.append(os.popen('echo -n "' + i + '"\n').read()[:-1])
++ post.append(os.popen('printf "' + i + '"\n').read()[:-1])
+
+ post = post + [
+ '',