diff options
| author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-06-09 10:36:26 -0300 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-07-01 21:42:32 +0200 | 
| commit | 3404ad7c4fd5997ba7becf239ab8bc5b919393aa (patch) | |
| tree | bf4a1d787f51f7f8aac70693f86a4a1446356a52 /package/bash/bash32-022 | |
| parent | da32c7ca2d488ffdd2e37a1cc533338741342a3c (diff) | |
| download | buildroot-novena-3404ad7c4fd5997ba7becf239ab8bc5b919393aa.tar.gz buildroot-novena-3404ad7c4fd5997ba7becf239ab8bc5b919393aa.zip  | |
bash: bump to 4.1.7(1) and migrate to autotargets
Closes #1993
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/bash/bash32-022')
| -rw-r--r-- | package/bash/bash32-022 | 126 | 
1 files changed, 0 insertions, 126 deletions
diff --git a/package/bash/bash32-022 b/package/bash/bash32-022 deleted file mode 100644 index aaf3337c9..000000000 --- a/package/bash/bash32-022 +++ /dev/null @@ -1,126 +0,0 @@ -			     BASH PATCH REPORT -			     ================= - -Bash-Release: 3.2 -Patch-ID: bash32-022 - -Bug-Reported-by:	Chet Ramey <chet.ramey@cwru.edu> -Bug-Reference-ID: -Bug-Reference-URL: - -Bug-Description: - -POSIX specifies that the `read' builtin invoked from an interative shell -must prompt with $PS2 when a line is continued using a backslash while -reading from a terminal. - -Patch: - -*** ../bash-3.2-patched/builtins/read.def	Tue Sep 19 08:45:48 2006 ---- bash-3.2/builtins/read.def	Thu May 24 16:03:30 2007 -*************** -*** 128,133 **** -  { -    register char *varname; -!   int size, i, nr, pass_next, saw_escape, eof, opt, retval, code; -!   int input_is_tty, input_is_pipe, unbuffered_read; -    int raw, edit, nchars, silent, have_timeout, fd; -    unsigned int tmout; ---- 131,136 ---- -  { -    register char *varname; -!   int size, i, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2; -!   int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul; -    int raw, edit, nchars, silent, have_timeout, fd; -    unsigned int tmout; -*************** -*** 135,139 **** -    char c; -    char *input_string, *orig_input_string, *ifs_chars, *prompt, *arrayname; -!   char *e, *t, *t1; -    struct stat tsb; -    SHELL_VAR *var; ---- 138,142 ---- -    char c; -    char *input_string, *orig_input_string, *ifs_chars, *prompt, *arrayname; -!   char *e, *t, *t1, *ps2; -    struct stat tsb; -    SHELL_VAR *var; -*************** -*** 149,152 **** ---- 152,156 ---- -    USE_VAR(i); -    USE_VAR(pass_next); -+   USE_VAR(print_ps2); -    USE_VAR(saw_escape); -    USE_VAR(input_is_pipe); -*************** -*** 164,167 **** ---- 168,172 ---- -  #endif -    USE_VAR(list); -+   USE_VAR(ps2); -   -    i = 0;		/* Index into the string that we are reading. */ -*************** -*** 387,391 **** -  #endif -   -!   for (eof = retval = 0;;) -      { -  #if defined (READLINE) ---- 394,399 ---- -  #endif -   -!   ps2 = 0; -!   for (print_ps2 = eof = retval = 0;;) -      { -  #if defined (READLINE) -*************** -*** 413,416 **** ---- 421,433 ---- -  #endif -   -+       if (print_ps2) -+ 	{ -+ 	  if (ps2 == 0) -+ 	    ps2 = get_string_value ("PS2"); -+ 	  fprintf (stderr, "%s", ps2 ? ps2 : ""); -+ 	  fflush (stderr); -+ 	  print_ps2 = 0; -+ 	} -+  -        if (unbuffered_read) -  	retval = zread (fd, &c, 1); -*************** -*** 441,445 **** -  	  pass_next = 0; -  	  if (c == '\n') -! 	    i--;		/* back up over the CTLESC */ -  	  else -  	    goto add_char; ---- 458,466 ---- -  	  pass_next = 0; -  	  if (c == '\n') -! 	    { -! 	      i--;		/* back up over the CTLESC */ -! 	      if (interactive && input_is_tty && raw == 0) -! 		print_ps2 = 1; -! 	    } -  	  else -  	    goto add_char; -*** ../bash-3.2/patchlevel.h	Thu Apr 13 08:31:04 2006 ---- bash-3.2/patchlevel.h	Mon Oct 16 14:22:54 2006 -*************** -*** 26,30 **** -     looks for to find the patch level (for the sccs version string). */ -   -! #define PATCHLEVEL 21 -   -  #endif /* _PATCHLEVEL_H_ */ ---- 26,30 ---- -     looks for to find the patch level (for the sccs version string). */ -   -! #define PATCHLEVEL 22 -   -  #endif /* _PATCHLEVEL_H_ */  | 
