mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
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.
This commit is contained 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
|
||||
|
||||
Reference in New Issue
Block a user