]> git.pld-linux.org Git - packages/bash.git/blame - bash31-003
- set perms for /var/log/bash_hist to 1733, else history would not be logged for...
[packages/bash.git] / bash31-003
CommitLineData
9c6e89a2
ER
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 3.1
5Patch-ID: bash31-003
6
7Bug-Reported-by: Adam Buraczewski <adamb@nor.pl>
8Bug-Reference-ID: <200512210950.jBL9o4C2008608@localhost.localdomain>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2005-12/msg00055.html
10
11Bug-Description:
12
13A missing #define guard causes bash to not compile when readline is not
14configured in, either as the result of explicit disabling or when the
15`--enable-minimal-config' option is given to configure.
16
17Patch:
18
19*** ../bash-3.1/variables.c Sat Nov 12 21:22:37 2005
20--- variables.c Mon Dec 26 13:34:03 2005
21***************
22*** 861,867 ****
23--- 863,871 ----
24 char val[INT_STRLEN_BOUND(int) + 1], *v;
25
26+ #if defined (READLINE)
27 /* If we are currently assigning to LINES or COLUMNS, don't do anything. */
28 if (winsize_assignment)
29 return;
30+ #endif
31
32 v = inttostr (lines, val, sizeof (val));
33*** ../bash-3.1/patchlevel.h Wed Jul 20 13:58:20 2005
34--- patchlevel.h Wed Dec 7 13:48:42 2005
35***************
36*** 26,30 ****
37 looks for to find the patch level (for the sccs version string). */
38
39! #define PATCHLEVEL 2
40
41 #endif /* _PATCHLEVEL_H_ */
42--- 26,30 ----
43 looks for to find the patch level (for the sccs version string). */
44
45! #define PATCHLEVEL 3
46
47 #endif /* _PATCHLEVEL_H_ */
This page took 0.034356 seconds and 4 git commands to generate.