rcolebaugh / rpms / bash

Forked from rpms/bash a year ago
Clone
07a490
			     BASH PATCH REPORT
07a490
			     =================
07a490
07a490
Bash-Release:	4.2
07a490
Patch-ID:	bash42-018
07a490
07a490
Bug-Reported-by:	Thomas Cort <tcort@minix3.org>
07a490
Bug-Reference-ID:	<BANLkTik-ebGGw3k_1YtB=RyfV1bsqdxC_g@mail.gmail.com>
07a490
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2011-06/msg00110.html
07a490
07a490
Bug-Description:
07a490
07a490
Bash fails to compile unless JOB_CONTROL is defined.
07a490
07a490
Patch (apply with `patch -p0'):
07a490
07a490
*** ../bash-4.2-patched/execute_cmd.c	2011-02-09 17:32:25.000000000 -0500
07a490
--- execute_cmd.c	2011-11-06 15:12:48.000000000 -0500
07a490
***************
07a490
*** 2197,2200 ****
07a490
--- 2315,2319 ----
07a490
      cmd->flags |= CMD_IGNORE_RETURN;
07a490
  
07a490
+ #if defined (JOB_CONTROL)
07a490
    lastpipe_flag = 0;
07a490
    begin_unwind_frame ("lastpipe-exec");
07a490
***************
07a490
*** 2216,2228 ****
07a490
  	  add_unwind_protect (lastpipe_cleanup, lastpipe_jid);
07a490
  	}
07a490
!       cmd->flags |= CMD_LASTPIPE;
07a490
      }	  
07a490
    if (prev >= 0)
07a490
      add_unwind_protect (close, prev);
07a490
  
07a490
    exec_result = execute_command_internal (cmd, asynchronous, prev, pipe_out, fds_to_close);
07a490
  
07a490
    if (lstdin > 0)
07a490
      restore_stdin (lstdin);
07a490
  
07a490
    if (prev >= 0)
07a490
--- 2335,2351 ----
07a490
  	  add_unwind_protect (lastpipe_cleanup, lastpipe_jid);
07a490
  	}
07a490
!       if (cmd)
07a490
! 	cmd->flags |= CMD_LASTPIPE;
07a490
      }	  
07a490
    if (prev >= 0)
07a490
      add_unwind_protect (close, prev);
07a490
+ #endif
07a490
  
07a490
    exec_result = execute_command_internal (cmd, asynchronous, prev, pipe_out, fds_to_close);
07a490
  
07a490
+ #if defined (JOB_CONTROL)
07a490
    if (lstdin > 0)
07a490
      restore_stdin (lstdin);
07a490
+ #endif
07a490
  
07a490
    if (prev >= 0)
07a490
*** ../bash-4.2-patched/patchlevel.h	Sat Jun 12 20:14:48 2010
07a490
--- patchlevel.h	Thu Feb 24 21:41:34 2011
07a490
***************
07a490
*** 26,30 ****
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 17
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */
07a490
--- 26,30 ----
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 18
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */