diff options
| author | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-03 22:20:21 +0000 |
|---|---|---|
| committer | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-03 22:20:21 +0000 |
| commit | 85cc1e720f0012ffb05a49409b27affa1b95295e (patch) | |
| tree | f9d65c9dd5f4ab2374739888eff6607fc725607a | |
| parent | 87ea783a4c6dbe1bd8b2725f2ab16c350c51f260 (diff) | |
| download | ppe42-gcc-85cc1e720f0012ffb05a49409b27affa1b95295e.tar.gz ppe42-gcc-85cc1e720f0012ffb05a49409b27affa1b95295e.zip | |
2006-04-04 Matthias Klose <doko@debian.org>
* Makefile.in (unprotoize.o): Same dependencies as for protoize.o.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112647 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/Makefile.in | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4585bf1b2df..7f389185d16 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-04-04 Matthias Klose <doko@debian.org> + + * Makefile.in (unprotoize.o): Same dependencies as for protoize.o. + 2006-04-03 Geoffrey Keating <geoffk@apple.com> * doc/extend.texi (Other Builtins): Document that diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c4304b20b89..77033f22c70 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 |

