This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa] Broken Makefile.in


The Makefile.in on tree-ssa branch seems to have been broken by the last 
merge. The build fails if $(TARGET_SUBDIR) does not exist.

Looks like this file didn't get regenerated properly after the last merge.

I've regenerated and comitted to tree-ssa branch as obvious.

Paul

2003-08-23  Paul Brook  <paul@nowt.org>

	* Makefile.in: Regenerate.

diff -urpxCVS clean/tree-ssa/Makefile.in gcc/Makefile.in
--- clean/tree-ssa/Makefile.in	2003-08-21 23:40:38 +0100
+++ gcc/Makefile.in	2003-08-23 17:21:40 +0100
@@ -22684,15 +22684,13 @@ maybe-configure-target-libmudflap:
 
 # There's only one multilib.out.  Cleverer subdirs shouldn't need it 
copied.
 $(TARGET_SUBDIR)/libmudflap/multilib.out: multilib.out
-	@[ -d $(TARGET_SUBDIR)/libmudflap ] || \
-	  mkdir $(TARGET_SUBDIR)/libmudflap; \
+	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libmudflap ; \
 	rm -f $(TARGET_SUBDIR)/libmudflap/Makefile || : ; \
 	cp multilib.out $(TARGET_SUBDIR)/libmudflap/multilib.out
 
 configure-target-libmudflap: $(TARGET_SUBDIR)/libmudflap/multilib.out
 	@test ! -f $(TARGET_SUBDIR)/libmudflap/Makefile || exit 0; \
-	[ -d $(TARGET_SUBDIR)/libmudflap ] || \
-	  mkdir $(TARGET_SUBDIR)/libmudflap;\
+	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libmudflap ; \
 	r=`${PWD_COMMAND}`; export r; \
 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
 	$(SET_LIB_PATH) \
@@ -22992,15 +22990,13 @@ maybe-configure-target-libgfortran:
 
 # There's only one multilib.out.  Cleverer subdirs shouldn't need it 
copied.
 $(TARGET_SUBDIR)/libgfortran/multilib.out: multilib.out
-	@[ -d $(TARGET_SUBDIR)/libgfortran ] || \
-	  mkdir $(TARGET_SUBDIR)/libgfortran; \
+	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgfortran ; \
 	rm -f $(TARGET_SUBDIR)/libgfortran/Makefile || : ; \
 	cp multilib.out $(TARGET_SUBDIR)/libgfortran/multilib.out
 
 configure-target-libgfortran: $(TARGET_SUBDIR)/libgfortran/multilib.out
 	@test ! -f $(TARGET_SUBDIR)/libgfortran/Makefile || exit 0; \
-	[ -d $(TARGET_SUBDIR)/libgfortran ] || \
-	  mkdir $(TARGET_SUBDIR)/libgfortran;\
+	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgfortran ; \
 	r=`${PWD_COMMAND}`; export r; \
 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
 	$(SET_LIB_PATH) \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]