diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-12-17 21:48:49 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-12-17 21:48:49 +0000 |
commit | b292054cac7f3b99d02b49987e7d435c6edb90a7 (patch) | |
tree | 2cf62d8eb5ddfd03eb6cff1ee618ca61e92aa815 | |
parent | f5efef64132801d29f619e1b0d37a3d16f2ce319 (diff) | |
download | newlib-b292054cac7f3b99d02b49987e7d435c6edb90a7.zip newlib-b292054cac7f3b99d02b49987e7d435c6edb90a7.tar.gz newlib-b292054cac7f3b99d02b49987e7d435c6edb90a7.tar.bz2 |
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
* mn10300/Makefile.in: Add mkdir call to make installation
directory when installing.
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/mn10300/Makefile.in | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index f7f2a2a..81d2e58 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2009-12-17 Jeff Johnston <jjohnstn@redhat.com> + + * mn10300/Makefile.in: Add mkdir call to make installation + directory when installing. + 2009-12-16 Conny Marco Menebrocker <c-m-m@gmx.de> * xc16x/Makefile.in: Remove extraneous stuff diff --git a/libgloss/mn10300/Makefile.in b/libgloss/mn10300/Makefile.in index 211a99f..925b2a4 100644 --- a/libgloss/mn10300/Makefile.in +++ b/libgloss/mn10300/Makefile.in @@ -128,6 +128,7 @@ distclean maintainer-clean realclean: clean .PHONY: install info install-info clean-info install: + mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; @for crt in ${CRT0}; do \ $(INSTALL_PROGRAM) $${crt} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${crt}; \ done |