summaryrefslogtreecommitdiffstats
path: root/tools/build/configure.ac
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-06-15 08:18:26 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-06-15 12:57:32 +0200
commitbac8d934189c02635cca752d36dce1fdad6338b8 (patch)
treee4ce8981b76b63db037a8ba8409852aa98b9b83b /tools/build/configure.ac
parentbsp/beatnik: Remove CFLAGS_DEBUG_V (diff)
downloadrtems-bac8d934189c02635cca752d36dce1fdad6338b8.tar.bz2
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.
Diffstat (limited to 'tools/build/configure.ac')
-rw-r--r--tools/build/configure.ac18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/build/configure.ac b/tools/build/configure.ac
deleted file mode 100644
index 7af73a2684..0000000000
--- a/tools/build/configure.ac
+++ /dev/null
@@ -1,18 +0,0 @@
-AC_PREREQ([2.69])
-AC_INIT([rtems-tools-build],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
-AC_CONFIG_SRCDIR([install-if-change.in])
-RTEMS_TOP(../..)
-RTEMS_SOURCE_TOP
-RTEMS_BUILD_TOP
-
-AC_CANONICAL_HOST
-
-AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2])
-AM_MAINTAINER_MODE
-
-RTEMS_PATH_KSH
-
-# Explicitly list all Makefiles here
-AC_CONFIG_FILES([Makefile])
-AC_CONFIG_FILES([install-if-change],[chmod +x install-if-change])
-AC_OUTPUT