source: rtems/configure.ac @ b82a4b4

5
Last change on this file since b82a4b4 was bac8d934, checked in by Sebastian Huber <sebastian.huber@…>, on 06/15/18 at 06:18:26

tools: Remove install-if-change program

The last installed tool in RTEMS repository is the install-if-change
script. It is not used to build/install BSPs. This script does the
same as the standard "install" program with an additional feature to
install variants via the -V command line option.

This script is used by the standard Makefile support:

c/src/make/host.cfg.in:INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change

The INSTALL_CHANGE is used by:

c/src/make/host.cfg.in:ifndef INSTALL_CHANGE
c/src/make/host.cfg.in:INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
c/src/make/host.cfg.in:INSTALL_VARIANT=$(INSTALL_CHANGE) -V
"$(LIB_VARIANT)"

Remove the support for variant installation and instead use the standard
"install" program. This breaks application Makefiles using the standard
Makefile support of RTEMS.

Close #3455.

  • Property mode set to 100644
File size: 985 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([c])
6RTEMS_TOP([.])
7RTEMS_SOURCE_TOP
8RTEMS_BUILD_TOP
9
10# Abort if trying to build inside of the source tree.
11AS_IF([test -f aclocal/version.m4],[
12  rm -f config.cache config.log confdefs.h
13  AC_MSG_ERROR([***]
14    [Attempt to build inside of the source tree]
15    [Please use a separate build directory, instead] )
16])
17
18AC_CANONICAL_TARGET([])
19AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip subdir-objects 1.12.2])
20AM_MAINTAINER_MODE
21
22## These option are only in here to let --help report all supported
23## options.
24RTEMS_ENABLE_RTEMSBSP
25RTEMS_ENABLE_MULTIPROCESSING
26RTEMS_ENABLE_SMP
27RTEMS_ENABLE_POSIX
28RTEMS_ENABLE_NETWORKING
29RTEMS_ENABLE_CXX
30RTEMS_ENABLE_TESTS
31RTEMS_ENABLE_RTEMS_DEBUG
32RTEMS_ENABLE_PARAVIRT
33RTEMS_ENABLE_DRVMGR
34
35RTEMS_TARGET_CONFIG_SUBDIRS([c])
36
37AC_CONFIG_FILES([Makefile])
38
39AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.