aboutsummaryrefslogtreecommitdiff
path: root/system/pdksh/patches/041_Debian-tilde-expansion.patch
diff options
context:
space:
mode:
authorDaniel LEVAI <leva@ecentrum.hu>2010-11-10 22:15:55 -0600
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-11-22 19:44:10 +0100
commita208cc7bde7a9841e88840e64886f859b523ccd3 (patch)
treeb87d285dd71481324b3f68a355fe10956e185c38 /system/pdksh/patches/041_Debian-tilde-expansion.patch
parent6e55b80a3c5f74f63f5152c929b4bf272081b112 (diff)
downloadslackbuilds-a208cc7bde7a9841e88840e64886f859b523ccd3.tar.xz
system/pdksh: Removed (use system/ksh instead)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/pdksh/patches/041_Debian-tilde-expansion.patch')
-rw-r--r--system/pdksh/patches/041_Debian-tilde-expansion.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/system/pdksh/patches/041_Debian-tilde-expansion.patch b/system/pdksh/patches/041_Debian-tilde-expansion.patch
deleted file mode 100644
index 30741eb470e9..000000000000
--- a/system/pdksh/patches/041_Debian-tilde-expansion.patch
+++ /dev/null
@@ -1,15 +0,0 @@
- * Don't do tilde expansion after `=' sign in non-assignments.
- Patch stolen from the posh package (closes: #187839).
-Index: pdksh-5.2.14/eval.c
-===================================================================
---- pdksh-5.2.14.orig/eval.c 2008-04-15 20:49:47.000000000 +0200
-+++ pdksh-5.2.14/eval.c 2008-04-15 20:52:19.000000000 +0200
-@@ -627,7 +627,7 @@
- #endif /* BRACE_EXPAND */
- case '=':
- /* Note first unquoted = for ~ */
-- if (!(f & DOTEMP_) && !saw_eq) {
-+ if (!(f & DOTEMP_) && !saw_eq && (f & DOASNTILDE)) {
- saw_eq = 1;
- tilde_ok = 1;
- }