From dffa3046d2bc83c039cf098b6882ae5382c4528b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 24 Aug 1998 14:44:54 +0000 Subject: Patch from Ralf Corsepius : The patch (rtems-rc-980821.diff) I had sent recently to fix the "make install" problem in rtems-980821/make/ still contained a bug (Thanks to Eric N. for reporting it). The patch enclosed to this mail is a corrected version of this patch, which finally should fix this problem. --- make/Makefile.in | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/make/Makefile.in b/make/Makefile.in index 6f504d7eee..ea5220009c 100644 --- a/make/Makefile.in +++ b/make/Makefile.in @@ -60,32 +60,38 @@ all: $(prefix)/rtems: @INSTALL@ $(INSTDIRFLAGS) $@ -install: $(prefix)/rtems install_files +install: $(prefix)/rtems \ + $(prefix)/rtems/make \ + $(prefix)/rtems/make/compilers \ + $(prefix)/rtems/make/custom \ + $(prefix)/rtems/make/Templates \ + install_files $(prefix)/rtems/make: @INSTALL@ $(INSTDIRFLAGS) $@ -install_files:: $(GENERIC_FILES) $(MAKEFILES) $(prefix)/rtems/make - @INSTALL@ $(INSTDATAFLAGS) $(GENERIC_FILES) $(MAKEFILES) \ +install_files:: $(GENERIC_FILES) $(MAKEFILES) + @INSTALL@ $(INSTDATAFLAGS) $^ \ $(prefix)/rtems/make $(prefix)/rtems/make/compilers: @INSTALL@ $(INSTDIRFLAGS) $@ -install_files:: $(COMPILER_FILES) $(prefix)/rtems/make/compilers - @INSTALL@ $(INSTDATAFLAGS) $(COMPILER_FILES) \ +install_files:: $(COMPILER_FILES) + @INSTALL@ $(INSTDATAFLAGS) $^ \ $(prefix)/rtems/make/compilers $(prefix)/rtems/make/custom: @INSTALL@ $(INSTDIRFLAGS) $@ -install_files:: $(CUSTOM_FILES) $(prefix)/rtems/make/custom - @INSTALL@ $(INSTDATAFLAGS) $(CUSTOM_FILES) \ +install_files:: $(CUSTOM_FILES) + @INSTALL@ $(INSTDATAFLAGS) $^ \ $(prefix)/rtems/make/custom $(prefix)/rtems/make/Templates: @INSTALL@ $(INSTDIRFLAGS) $@ -install_files:: $(TEMPLATE_FILES) $(prefix)/rtems/make/Templates - @INSTALL@ $(INSTDATAFLAGS) $(TEMPLATE_FILES) \ + +install_files:: $(TEMPLATE_FILES) + @INSTALL@ $(INSTDATAFLAGS) $^ \ $(prefix)/rtems/make/Templates -- cgit v1.2.3