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