summaryrefslogtreecommitdiff
path: root/wm/ctwm/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'wm/ctwm/patches/patch-ac')
-rw-r--r--wm/ctwm/patches/patch-ac16
1 files changed, 16 insertions, 0 deletions
diff --git a/wm/ctwm/patches/patch-ac b/wm/ctwm/patches/patch-ac
new file mode 100644
index 00000000000..a75066ffe91
--- /dev/null
+++ b/wm/ctwm/patches/patch-ac
@@ -0,0 +1,16 @@
+$NetBSD: patch-ac,v 1.1 2003/06/10 07:40:53 wiz Exp $
+
+Remove -s option from call to m4.
+
+--- parse.c.dist Tue Dec 11 16:38:52 2001
++++ parse.c Sat Mar 8 13:34:59 2003
+@@ -2097,7 +2097,8 @@
+ 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);
++ /* Not all m4s know about -s */
++ execlp("m4", "m4", tmp_file, "-", NULL);
+ /* If we get here we are screwed... */
+ perror("Can't execlp() m4");
+ exit(124);