Mail Archives: cygwin/1996/12/05/12:06:10
Dear cygwin32 maintainers,
I have programs that rely on the ability to do
PATH=../scripts:$PATH some_script
This breaks in gnu-win32 version b16.
The following untested patch might help.
--- spawn.cc Thu Aug 29 12:57:46 1996
+++ new.spawn.cc Fri Dec 6 05:55:01 1996
@@ -278,7 +278,7 @@
debug_printf ("spawn_guts: %s is a script\n", prog_arg);
char *sh_path_buf = (char *) alloca (MAX_PATH);
- char *sh_path = (char *) find_exec ("sh", sh_path_buf);
+ char *sh_path = (char *) find_exec ("/bin/sh", sh_path_buf);
char *f = (char *) alloca (strlen (copy) + strlen (sh_path) + 2);
strcpy (f, sh_path);
strcat (f, " ");
--
Fergus Henderson <fjh AT cs DOT mu DOT oz DOT au> | "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh> | of excellence is a lethal habit"
PGP: finger fjh AT 128 DOT 250 DOT 37 DOT 3 | -- the last words of T. S. Garp.
-
For help on using this list, send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -