This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] prevent BASH env pollution from corrupting AC_PATH_PROG(bash) search


On Thursday 07 June 2007, Ulrich Drepper wrote:
> I checked in something slightly different.

the reason i did BASH=$BASH_SHELL was so that files that use @BASH@ wouldnt
have to be changed to use @BASH_SHELL@ ...
-mike

Index: ChangeLog
===================================================================
RCS file: /cvs/glibc/libc/ChangeLog,v
retrieving revision 1.10667
diff -u -p -r1.10667 ChangeLog
--- ChangeLog	8 Jun 2007 03:17:15 -0000	1.10667
+++ ChangeLog	8 Jun 2007 04:46:47 -0000
@@ -1,6 +1,7 @@
 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
 
 	* configure.in: Avoid variable named BASH.
+	* config.make.in: Likewise.
 	Patch in part by Mike Frysinger.
 
 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
Index: config.make.in
===================================================================
RCS file: /cvs/glibc/libc/config.make.in,v
retrieving revision 1.121
diff -u -p -r1.121 config.make.in
--- config.make.in	17 Mar 2007 17:02:00 -0000	1.121
+++ config.make.in	8 Jun 2007 04:46:47 -0000
@@ -117,7 +117,7 @@ LN_S = @LN_S@
 MSGFMT = @MSGFMT@
 
 # Script execution tools.
-BASH = @BASH@
+BASH = @BASH_SHELL@
 KSH = @KSH@
 AWK = @AWK@
 PERL = @PERL@


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]