* Makefile.in (VERSION): Bump to 4.8.6.
authorFred Fish <fnf@specifix.com>
Sun, 9 May 1993 14:26:25 +0000 (14:26 +0000)
committerFred Fish <fnf@specifix.com>
Sun, 9 May 1993 14:26:25 +0000 (14:26 +0000)
gdb/ChangeLog
gdb/Makefile.in

index e23148247184bf6c48ad1b7fa8760b911cda3ac6..cd814f46c6029612d85af2fe9c3ba034355d7a58 100644 (file)
@@ -1,3 +1,7 @@
+Sun May  9 07:25:02 1993  Fred Fish  (fnf@cygnus.com)
+
+       * Makefile.in (VERSION):  Bump to 4.8.6.
+
 Sat May  8 12:36:03 1993  Fred Fish  (fnf@cygnus.com)
 
        * config/pa/xm-hppah.h (MALLOC_INCOMPATIBLE):  Define it, and
index 37b60d5c77ef09698d2e58b61c36dee1f009c90e..12b92cc5e98b8f109506bca91c813e68fe17c6eb 100644 (file)
@@ -166,7 +166,7 @@ ADD_FILES = ${REGEX} ${ALLOCA}  ${XM_ADD_FILES} ${TM_ADD_FILES} \
 ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} \
        ${NAT_ADD_FILES}
 
-VERSION = 4.8.5
+VERSION = 4.8.6
 DIST=gdb
 
 LINT=/usr/5bin/lint
@@ -565,16 +565,18 @@ depend: $(SOURCES) Makefile.in
          -e 's; ./tm.h; tm.h config.status;g'  \
          -e 's; ./nm.h; nm.h config.status;g'  \
          >depend.tm3;
-# OK, get your sed manual out.  This script makes all the rules in
+# OK, get your sed manual out.  This script makes the rules in
 # depend explicitly state the rule, rather than relying on VPATH
 # or a .c.o implicit rule.  This is needed for Sun make, and should
-# be portable to any make worthy of the name.  I suspect that we no
-# longer need to set VPATH.
+# be portable to any make worthy of the name.
+# There is one exception: the *.tab.c files can exist either in srcdir
+# or in ., so make sure not to use an explicit rule for them.
        <depend.tm3 sed \
          -e '/:/h' \
          -e '/\\$$/b end' \
          -e 'p' \
          -e 'g' \
+         -e '/:.*\.tab\.c/d' \
          -e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
          -e ': end' \
          >depend.tm4;
This page took 0.028155 seconds and 4 git commands to generate.