OSDN Git Service

Restore patch with fixed invocation of mkinstalldirs
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2001 09:19:17 +0000 (09:19 +0000)
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2001 09:19:17 +0000 (09:19 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44597 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/Makefile.in
gcc/mklibgcc.in

index 58cda91..28a6e6b 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-02  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * Makefile.in, mklibgcc.in: Restore changes with fixed invocation
+       of mkinstalldirs.
+
 2001-08-03  Richard Henderson  <rth@redhat.com>
 
        * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't write to
index 4f7ae2b..c465c9c 100644 (file)
@@ -1033,6 +1033,7 @@ libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext
        SHLIB_MKMAP='$(SHLIB_MKMAP)' \
        SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \
        SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \
+       mkinstalldirs='$(SHELL) $(srcdir)/mkinstalldirs' \
          $(SHELL) mklibgcc > tmp-libgcc.mk
        mv tmp-libgcc.mk libgcc.mk
 
index 151dd49..b9ee3b4 100644 (file)
@@ -332,7 +332,7 @@ done
 
 echo 'stmp-dirs: force'
 echo ' for d in '"$dirs"'; do \'
-echo '   if [ -d $$d ]; then true; else mkdir $$d; fi \'
+echo '   if [ -d $$d ]; then true; else '$mkinstalldirs' $$d; fi \'
 echo ' done'
 echo ' if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi'