From 121e62db41f9d58c0946c151b348b3f0719a0adc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Tue, 21 Jul 1998 17:33:24 -0700
Subject: [PATCH] bugfix for silly cpp behaviour take two

Rev: src/Makefile.in:1.102
---
 src/Makefile.in | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/Makefile.in b/src/Makefile.in
index 99a2358812..eb213bae8c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,5 +1,5 @@
 #
-# $Id: Makefile.in,v 1.101 1998/07/22 00:31:31 hubbe Exp $
+# $Id: Makefile.in,v 1.102 1998/07/22 00:33:24 hubbe Exp $
 #
 
 # This line is needed on some machines.
@@ -453,9 +453,10 @@ language.o: $(SRCDIR)/language.c $(SRCDIR)/object.h $(SRCDIR)/interpret.h $(SRCD
 
 $(SRCDIR)/language.h: $(SRCDIR)/language.yacc
 	@echo "Expect 1 shift/reduce conflict."
-	( cd $(SRCDIR) ; $(YACC) $(YFLAGS) language.yacc )
-	mv y.tab.c $(SRCDIR)/language.c
-	mv y.tab.h $(SRCDIR)/language.h
+	( cd $(SRCDIR) ;\
+	 $(YACC) $(YFLAGS) language.yacc ;\
+	 mv y.tab.c language.c ;\
+	 mv y.tab.h language.h )
 
 $(SRCDIR)/language.c: $(SRCDIR)/language.h
 	touch $(SRCDIR)/language.c
-- 
GitLab