summaryrefslogtreecommitdiffstats
path: root/SOURCES/bash-3.1-extended_quote.patch
diff options
context:
space:
mode:
authorPete Travis <immanetize@fedoraproject.org>2014-09-26 14:32:59 -0600
committerPete Travis <immanetize@fedoraproject.org>2014-09-26 14:32:59 -0600
commitfe5673aed2053463a7164ec5e7b609877340c0fa (patch)
treef7db962c06e191244951fa2f415c79325051892d /SOURCES/bash-3.1-extended_quote.patch
parent08b01b8f3f227bda87ee2591c7e6ccb379fad187 (diff)
downloadrpmbuild-fe5673aed2053463a7164ec5e7b609877340c0fa.tar.gz
rpmbuild-fe5673aed2053463a7164ec5e7b609877340c0fa.tar.xz
rpmbuild-fe5673aed2053463a7164ec5e7b609877340c0fa.zip
SLES10 bash init
Diffstat (limited to 'SOURCES/bash-3.1-extended_quote.patch')
-rw-r--r--SOURCES/bash-3.1-extended_quote.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/SOURCES/bash-3.1-extended_quote.patch b/SOURCES/bash-3.1-extended_quote.patch
new file mode 100644
index 0000000..14e98c8
--- /dev/null
+++ b/SOURCES/bash-3.1-extended_quote.patch
@@ -0,0 +1,19 @@
+*** parse.y
+--- parse.y Tue Jan 10 11:36:59 2006
+***************
+*** 2842,2848 ****
+ ttrans = ansiexpand (nestret, 0, nestlen - 1, &ttranslen);
+ xfree (nestret);
+
+! if ((rflags & P_DQUOTE) == 0)
+ {
+ nestret = sh_single_quote (ttrans);
+ free (ttrans);
+--- 2842,2848 ----
+ ttrans = ansiexpand (nestret, 0, nestlen - 1, &ttranslen);
+ xfree (nestret);
+
+! if (extended_quote || (rflags & P_DQUOTE) == 0)
+ {
+ nestret = sh_single_quote (ttrans);
+ free (ttrans);