Changeset 481
- Timestamp:
- Mar 22, 2012, 11:48:37 AM (13 years ago)
- Location:
- gawk/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified gawk/trunk/io.c ¶
r478 r481 1873 1873 1874 1874 /* 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); 1876 1876 1877 1877 /* restore stdin and stdout */ … … 2056 2056 os_close_on_exec(save_stdout, cmd, "pipe", "from"); /* saved stdout of the parent process */ 2057 2057 2058 pid = spawnl (P_NOWAIT, "/bin/sh", "sh", "-c", cmd, NULL);2058 pid = spawnlp(P_NOWAIT, "sh", "sh", "-c", cmd, NULL); 2059 2059 2060 2060 /* restore stdout */ -
TabularUnified gawk/trunk/po/Makefile.in.in ¶
r478 r481 16 16 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 17 17 18 SHELL = /bin/sh18 SHELL = @SHELL@ 19 19 @SET_MAKE@ 20 20
Note:
See TracChangeset
for help on using the changeset viewer.