fix a patchfile bug which caused parse.cc to be compiled twice.

This commit is contained in:
dmcmahill 2000-03-07 20:36:51 +00:00
parent 0726f83164
commit e5caff965d
2 changed files with 7 additions and 6 deletions

View file

@ -1,4 +1,4 @@
$NetBSD: patch-sum,v 1.1.1.1 2000/03/07 16:09:15 dmcmahill Exp $
$NetBSD: patch-sum,v 1.2 2000/03/07 20:36:51 dmcmahill Exp $
MD5 (patch-ad) = 7a12b669a87ec1639958bfc7677e218d
MD5 (patch-ad) = 35aae681e397bc9d5be0f6765a8adc96
MD5 (patch-ae) = 44921f529c17458cd3ba34d35dc0da77

View file

@ -1,13 +1,14 @@
$NetBSD: patch-ad,v 1.1.1.1 2000/03/07 16:09:16 dmcmahill Exp $
$NetBSD: patch-ad,v 1.2 2000/03/07 20:36:53 dmcmahill Exp $
don't use -O2 on parse.cc because of compiler bugs on sparc and pmax
(maybe others).
--- Makefile.in.orig Sat Feb 5 01:40:35 2000
+++ Makefile.in Sun Feb 13 11:13:10 2000
@@ -111,4 +111,5 @@
+++ Makefile.in Tue Mar 7 12:38:25 2000
@@ -111,4 +111,6 @@
parse.o dep/parse.d: parse.cc
+ $(CXX) -c -I. $(CPPFLAGS) $<
+ $(CXX) -MD -c -I. $(CPPFLAGS) $<
+ mv parse.d dep/parse.d
parse.h parse.cc: $(srcdir)/parse.y