From: Matthias Klose Date: Mon, 3 Apr 2006 22:20:21 +0000 (+0000) Subject: Makefile.in (unprotoize.o): Same dependencies as for protoize.o. X-Git-Tag: releases/gcc-4.2.0~3436 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8160ab35e1aa1fa8f12be149fd07cd8e02d87b2c;p=thirdparty%2Fgcc.git Makefile.in (unprotoize.o): Same dependencies as for protoize.o. 2006-04-04 Matthias Klose * Makefile.in (unprotoize.o): Same dependencies as for protoize.o. From-SVN: r112647 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4585bf1b2df8..7f389185d161 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-04-04 Matthias Klose + + * Makefile.in (unprotoize.o): Same dependencies as for protoize.o. + 2006-04-03 Geoffrey Keating * doc/extend.texi (Other Builtins): Document that diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c4304b20b897..77033f22c70d 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3058,8 +3058,8 @@ protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) $(SYSTEM_H) \ $(DRIVER_DEFINES) \ $(srcdir)/protoize.c $(OUTPUT_OPTION)) -unprotoize.o: protoize.c $(srcdir)/../include/getopt.h \ - $(CONFIG_H) $(SYSTEM_H) Makefile version.h +unprotoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) \ + $(SYSTEM_H) coretypes.h $(TM_H) Makefile version.h cppdefault.h intl.h (SHLIB_LINK='$(SHLIB_LINK)' \ SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \ $(CC) -c -DUNPROTOIZE $(ALL_CFLAGS) $(ALL_CPPFLAGS) \ @@ -3171,8 +3171,8 @@ install-gcc-tooldir: macro_list: s-macro_list; @true s-macro_list : $(GCC_PASSES) echo | $(GCC_FOR_TARGET) -E -dM - | \ - sed -n 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p ; \ - s/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \ + sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \ + -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \ sort -u > tmp-macro_list $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list $(STAMP) s-macro_list