Restore patch with fixed invocation of mkinstalldirs

From-SVN: r44597
This commit is contained in:
Nick Clifton 2001-08-03 09:19:17 +00:00 committed by Nick Clifton
parent 6e5a6a6b0e
commit ef1f96f06c
3 changed files with 7 additions and 1 deletions

View 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

View 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

View 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'