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/libbsp/sparc/erc32/tools/Makefile.in

    r7908ba5b r8548fe0  
    88RTEMS_ROOT = @top_srcdir@
    99PROJECT_ROOT = @PROJECT_ROOT@
     10
     11INSTALL = @INSTALL@
    1012
    1113include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     
    2527
    2628$(DESTDIR):
    27         @INSTALL@ $(INSTDIRFLAGS) $@
     29        @top_srcdir@/mkinstalldirs $@
    2830
    2931$(INSTALLED_PGMS): $(PGMS)
    30         @INSTALL@ $(INSTBINFLAGS) $^ $(DESTDIR)
     32        $(INSTALL) $(INSTBINFLAGS) $^ $(DESTDIR)
    3133
    3234install: $(DESTDIR) $(INSTALLED_PGMS)
Note: See TracChangeset for help on using the changeset viewer.