From 75ec0dd10d8e7ee462735420799be4a2b3f44ed6 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:31:31 -0700
Subject: [PATCH] bugfix for silly cpp behaviour

Rev: src/Makefile.in:1.101
---
 src/Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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