Ignore:
Timestamp:
02/18/99 18:36:05 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
39136318
Parents:
7908ba5b
Message:

Part of the automake VI patch from Ralf Corsepius <corsepiu@…>:

5) rtems-rc-19990202-1.diff/reorg-install.sh

reorg-install.sh fixes a Makefile variable name clash of RTEMS
configuration files and automake/autoconf standards.
Until now, RTEMS used $(INSTALL) for install-if-change. Automake and
autoconf use $(INSTALL) for a bsd-compatible install. As
install-if-change and bsd-install are not compatible, I renamed all
references to install-if-changed to $(INSTALL_CHANGED) and used
$(INSTALL) for bsd-install (==automake/autoconf standard). When
automake will be introduced install-if-change will probably be replaced
by $(INSTALL) and therefore will slowly vanish. For the moment, this
patch fixes a very nasty problem which prevents adding any automake file
until now (There are still more).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/sh/sh7032/include/Makefile.in

    r7908ba5b r8548fe0  
    88RTEMS_ROOT = @top_srcdir@
    99PROJECT_ROOT = @PROJECT_ROOT@
     10
     11INSTALL = @INSTALL@
    1012
    1113H_FILES = $(wildcard $(srcdir)/*.h)
     
    2628install:
    2729        test -d $(PROJECT_INCLUDE)/sh || $(MKDIR) $(PROJECT_INCLUDE)/sh
    28         $(INSTALL) -m 444 $(H_FILES) $(PROJECT_INCLUDE)/sh
     30        $(INSTALL_CHANGE) -m 444 $(H_FILES) $(PROJECT_INCLUDE)/sh
Note: See TracChangeset for help on using the changeset viewer.