- Timestamp:
- Jan 8, 2011, 1:04:38 PM (14 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 94d7425d
- Parents:
- 1070a2d
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
patches/bash-4.1-branch_update-2.patch
r1070a2d r96f80a4 1 1 Submitted By: Joe Ciccone <jciccone@gmail.com> 2 Date: 0 7-25-20102 Date: 01-08-2011 3 3 Initial Package Version: 4.1 4 4 Origin: Upstream 5 5 Upstream Status: From Upstream 6 Description: Contains all upstream patches up to 4.1-00 76 Description: Contains all upstream patches up to 4.1-009 7 7 8 8 diff -Naur bash-4.1.orig//bashline.c bash-4.1/bashline.c 9 9 --- bash-4.1.orig//bashline.c 2009-10-24 14:10:19.000000000 -0400 10 +++ bash-4.1/bashline.c 201 0-07-25 22:04:42.669952245 -040010 +++ bash-4.1/bashline.c 2011-01-08 15:59:31.934906851 -0500 11 11 @@ -1680,7 +1680,7 @@ 12 12 a single match (multiple matches that end up reducing the number of … … 18 18 if (state == 0) 19 19 { 20 diff -Naur bash-4.1.orig//builtins/declare.def bash-4.1/builtins/declare.def 21 --- bash-4.1.orig//builtins/declare.def 2009-11-25 19:42:00.000000000 -0500 22 +++ bash-4.1/builtins/declare.def 2011-01-08 15:59:58.930671218 -0500 23 @@ -512,7 +512,7 @@ 24 { 25 /* let bind_{array,assoc}_variable take care of this. */ 26 if (assoc_p (var)) 27 - bind_assoc_variable (var, name, "0", value, aflags); 28 + bind_assoc_variable (var, name, savestring ("0"), value, aflags); 29 else 30 bind_array_variable (name, 0, value, aflags); 31 } 20 32 diff -Naur bash-4.1.orig//builtins/printf.def bash-4.1/builtins/printf.def 21 33 --- bash-4.1.orig//builtins/printf.def 2009-11-20 15:31:23.000000000 -0500 22 +++ bash-4.1/builtins/printf.def 201 0-07-25 22:04:42.685951678 -040034 +++ bash-4.1/builtins/printf.def 2011-01-08 15:59:31.934906851 -0500 23 35 @@ -117,7 +117,7 @@ 24 36 else if (have_fieldwidth) \ … … 41 53 diff -Naur bash-4.1.orig//builtins/read.def bash-4.1/builtins/read.def 42 54 --- bash-4.1.orig//builtins/read.def 2009-10-08 11:35:46.000000000 -0400 43 +++ bash-4.1/builtins/read.def 201 0-07-25 22:04:42.673839182 -040055 +++ bash-4.1/builtins/read.def 2011-01-08 15:59:31.934906851 -0500 44 56 @@ -615,14 +615,15 @@ 45 57 if (unbuffered_read == 0) … … 62 74 diff -Naur bash-4.1.orig//lib/readline/complete.c bash-4.1/lib/readline/complete.c 63 75 --- bash-4.1.orig//lib/readline/complete.c 2009-11-29 18:39:30.000000000 -0500 64 +++ bash-4.1/lib/readline/complete.c 201 0-07-25 22:04:42.669952245 -040076 +++ bash-4.1/lib/readline/complete.c 2011-01-08 15:59:31.934906851 -0500 65 77 @@ -2138,7 +2138,7 @@ 66 78 All other entries except "." and ".." match. */ … … 83 95 diff -Naur bash-4.1.orig//patchlevel.h bash-4.1/patchlevel.h 84 96 --- bash-4.1.orig//patchlevel.h 2009-10-01 16:39:22.000000000 -0400 85 +++ bash-4.1/patchlevel.h 201 0-07-25 22:04:42.689952400 -040097 +++ bash-4.1/patchlevel.h 2011-01-08 16:00:00.782985562 -0500 86 98 @@ -25,6 +25,6 @@ 87 99 regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh … … 89 101 90 102 -#define PATCHLEVEL 0 91 +#define PATCHLEVEL 7103 +#define PATCHLEVEL 9 92 104 93 105 #endif /* _PATCHLEVEL_H_ */ 94 106 diff -Naur bash-4.1.orig//print_cmd.c bash-4.1/print_cmd.c 95 107 --- bash-4.1.orig//print_cmd.c 2009-09-16 15:32:26.000000000 -0400 96 +++ bash-4.1/print_cmd.c 201 0-07-25 22:04:42.677952146 -0400108 +++ bash-4.1/print_cmd.c 2011-01-08 15:59:31.938922841 -0500 97 109 @@ -113,6 +113,12 @@ 98 110 … … 125 137 } 126 138 139 diff -Naur bash-4.1.orig//sig.c bash-4.1/sig.c 140 --- bash-4.1.orig//sig.c 2009-08-14 16:31:52.000000000 -0400 141 +++ bash-4.1/sig.c 2011-01-08 16:00:00.782985562 -0500 142 @@ -655,6 +655,9 @@ 143 act.sa_flags |= SA_INTERRUPT; /* XXX */ 144 else 145 act.sa_flags |= SA_RESTART; /* XXX */ 146 +#else 147 + if (sig == SIGCHLD) 148 + act.sa_flags |= SA_RESTART; 149 #endif 150 sigemptyset (&act.sa_mask); 151 sigemptyset (&oact.sa_mask); 127 152 diff -Naur bash-4.1.orig//variables.c bash-4.1/variables.c 128 153 --- bash-4.1.orig//variables.c 2009-11-03 14:13:58.000000000 -0500 129 +++ bash-4.1/variables.c 201 0-07-25 22:04:42.673839182 -0400154 +++ bash-4.1/variables.c 2011-01-08 15:59:31.938922841 -0500 130 155 @@ -3808,6 +3808,11 @@ 131 156
Note:
See TracChangeset
for help on using the changeset viewer.