Changeset 481


Ignore:
Timestamp:
Mar 22, 2012, 11:48:37 AM (13 years ago)
Author:
Yuri Dario
Message:

gawk: fixed shell path search.

Location:
gawk/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified gawk/trunk/io.c

    r478 r481  
    18731873
    18741874        /* stderr does NOT get dup'ed onto child's stdout */
    1875         pid = spawnl(P_NOWAIT, "/bin/sh", "sh", "-c", str, NULL);
     1875        pid = spawnlp(P_NOWAIT, "sh", "sh", "-c", str, NULL);
    18761876       
    18771877        /* restore stdin and stdout */
     
    20562056        os_close_on_exec(save_stdout, cmd, "pipe", "from"); /* saved stdout of the parent process */
    20572057       
    2058         pid = spawnl(P_NOWAIT, "/bin/sh", "sh", "-c", cmd, NULL);
     2058        pid = spawnlp(P_NOWAIT, "sh", "sh", "-c", cmd, NULL);
    20592059       
    20602060        /* restore stdout */
  • TabularUnified gawk/trunk/po/Makefile.in.in

    r478 r481  
    1616PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
    1717
    18 SHELL = /bin/sh
     18SHELL = @SHELL@
    1919@SET_MAKE@
    2020
Note: See TracChangeset for help on using the changeset viewer.