mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
14a3dadcf5
for unknown reasons). Since the author of CTWM decided to depend on a feature of GNU's m4 this port now has a dependency on ports/devel/m4.
20 lines
899 B
Plaintext
20 lines
899 B
Plaintext
*** parse.c.orig Sun Feb 13 19:00:24 2000
|
|
--- parse.c Sun Feb 13 19:02:13 2000
|
|
***************
|
|
*** 2070,2076 ****
|
|
dup2(fids[1], 1); /* stdout = pipe to parent */
|
|
/* get_defs("m4", dpy, display_name) */
|
|
tmp_file = m4_defs(dpy, display_name);
|
|
! execlp("m4", "m4", "-s", tmp_file, "-", NULL);
|
|
/* If we get here we are screwed... */
|
|
perror("Can't execlp() m4");
|
|
exit(124);
|
|
--- 2070,2076 ----
|
|
dup2(fids[1], 1); /* stdout = pipe to parent */
|
|
/* get_defs("m4", dpy, display_name) */
|
|
tmp_file = m4_defs(dpy, display_name);
|
|
! execlp(M4PROG, "-s", tmp_file, "-", NULL);
|
|
/* If we get here we are screwed... */
|
|
perror("Can't execlp() m4");
|
|
exit(124);
|