From: tromey Date: Wed, 26 Mar 2008 13:18:34 +0000 (+0000) Subject: * Makefile.in (DEPFILES): Add missing '/'. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae69189ea50b5a562512f29d9c7ae24f9b5cd02c;p=thirdparty%2Fgcc.git * Makefile.in (DEPFILES): Add missing '/'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133604 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc1bb0477c99..1363d397919a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-03-26 Tom Tromey + + * Makefile.in (DEPFILES): Add missing '/'. + 2008-03-26 Richard Guenther * fold-const.c (target.h): Include. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 16015bffac42..9208c9346ec4 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.