Commit ef1f96f0 by Nick Clifton Committed by Nick Clifton

Restore patch with fixed invocation of mkinstalldirs

From-SVN: r44597
parent 6e5a6a6b
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> 2001-08-03 Richard Henderson <rth@redhat.com>
* config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't write to * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't write to
......
...@@ -1033,6 +1033,7 @@ libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext ...@@ -1033,6 +1033,7 @@ libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext
SHLIB_MKMAP='$(SHLIB_MKMAP)' \ SHLIB_MKMAP='$(SHLIB_MKMAP)' \
SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \ SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \
SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \ SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \
mkinstalldirs='$(SHELL) $(srcdir)/mkinstalldirs' \
$(SHELL) mklibgcc > tmp-libgcc.mk $(SHELL) mklibgcc > tmp-libgcc.mk
mv tmp-libgcc.mk libgcc.mk mv tmp-libgcc.mk libgcc.mk
......
...@@ -332,7 +332,7 @@ done ...@@ -332,7 +332,7 @@ done
echo 'stmp-dirs: force' echo 'stmp-dirs: force'
echo ' for d in '"$dirs"'; do \' 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 ' done'
echo ' if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi' echo ' if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment