From b292054cac7f3b99d02b49987e7d435c6edb90a7 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Thu, 17 Dec 2009 21:48:49 +0000 Subject: [PATCH] 2009-12-17 Jeff Johnston * mn10300/Makefile.in: Add mkdir call to make installation directory when installing. --- libgloss/ChangeLog | 5 +++++ libgloss/mn10300/Makefile.in | 1 + 2 files changed, 6 insertions(+) diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index f7f2a2ad3..81d2e5878 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2009-12-17 Jeff Johnston + + * mn10300/Makefile.in: Add mkdir call to make installation + directory when installing. + 2009-12-16 Conny Marco Menebrocker * xc16x/Makefile.in: Remove extraneous stuff diff --git a/libgloss/mn10300/Makefile.in b/libgloss/mn10300/Makefile.in index 211a99fc1..925b2a47d 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