diff options
author | Tom Tromey <tromey@redhat.com> | 2008-03-26 13:18:34 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2008-03-26 13:18:34 +0000 |
commit | f91ed78d627f4eb09c0cf820cfde6b10e3a5bb4f (patch) | |
tree | 2f288691df5d48ae675dfb3c6d7fe018a494368a /gcc | |
parent | 4acc3f420cff369d281f61038c4bcdde6c68b8a0 (diff) | |
download | gcc-f91ed78d627f4eb09c0cf820cfde6b10e3a5bb4f.zip gcc-f91ed78d627f4eb09c0cf820cfde6b10e3a5bb4f.tar.gz gcc-f91ed78d627f4eb09c0cf820cfde6b10e3a5bb4f.tar.bz2 |
* Makefile.in (DEPFILES): Add missing '/'.
From-SVN: r133604
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc1bb04..1363d39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-03-26 Tom Tromey <tromey@redhat.com> + + * Makefile.in (DEPFILES): Add missing '/'. + 2008-03-26 Richard Guenther <rguenther@suse.de> * fold-const.c (target.h): Include. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 16015bf..9208c93 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3270,7 +3270,7 @@ $(ALL_HOST_OBJS): | $(generated_files) # Include the auto-generated dependencies for all host objects. DEPFILES = \ $(foreach obj,$(ALL_HOST_OBJS),\ - $(dir $(obj))$(DEPDIR)$(patsubst %.o,%.Po,$(notdir $(obj)))) + $(dir $(obj))$(DEPDIR)/$(patsubst %.o,%.Po,$(notdir $(obj)))) -include $(DEPFILES) # Include the auto-generated dependencies for all build objects. |