diff options
author | Alexey Neyman <stilor@att.net> | 2015-10-29 19:34:24 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-10-30 16:24:52 -0700 |
commit | 5844514e74eac69b71c1e1661676dd88e4450610 (patch) | |
tree | c59b6d1ebfb892cd69cdc6019ca9c28a9ad5d3fb /config | |
parent | 1ad356c1789523ea7124108db8fd4b834e50558d (diff) | |
download | crosstool-ng-5844514e74eac69b71c1e1661676dd88e4450610.tar.gz crosstool-ng-5844514e74eac69b71c1e1661676dd88e4450610.tar.bz2 crosstool-ng-5844514e74eac69b71c1e1661676dd88e4450610.zip |
Fix samples using GMP 4.3.2.
Some older versions of configure (including the one in GMP 4.3.2)
interpret the $ECHO environment variable as the `echo' utility to
use. CT-NG sets the variable to `:' and exports it if V=0 or V=1
is supplied, breaking the samples using such configure. This currently
includes bfin-unknown-linux-uclibc and powerpc-unknown-linux-uclibc.
Also, correct the description of the V= variable - V=0 is *not* the
default; in fact, default does not correspond to any of the V=[012]
values.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/config/config.mk b/config/config.mk index 8cc2b15c..669e1576 100644 --- a/config/config.mk +++ b/config/config.mk @@ -50,12 +50,12 @@ config_files: $(STATIC_CONFIG_FILES) $(GEN_CONFIG_FILES) # Where to access to the source config files from config: - @$(ECHO) " LN config" + @$(CT_ECHO) " LN config" $(SILENT)ln -s $(CT_LIB_DIR)/config config # Where to store the generated config files into config.gen: - @$(ECHO) " MKDIR config.gen" + @$(CT_ECHO) " MKDIR config.gen" $(SILENT)mkdir -p config.gen #----------------------------------------------------------- @@ -74,34 +74,34 @@ DEBUGS = $(patsubst config/debug/%.in,%,$(DEBUG_CONFIG_FILES)) # WARNING! If a .in file disapears between two runs, that will NOT be detected! config.gen/arch.in: $(ARCH_CONFIG_FILES) $(ARCH_CONFIG_FILES_2) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh choice "$@" "Target Architecture" "ARCH" "config/arch" "Y" $(ARCHS) config.gen/kernel.in: $(KERNEL_CONFIG_FILES) $(KERNEL_CONFIG_FILES_2) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh choice "$@" "Target OS" "KERNEL" "config/kernel" "Y" $(KERNELS) config.gen/cc.in: $(CC_CONFIG_FILES) $(CC_CONFIG_FILES_2) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh choice "$@" "C compiler" "CC" "config/cc" "N" $(CCS) config.gen/binutils.in: $(CC_BINUTILS_FILES) $(CC_BINUTILS_FILES_2) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh choice "$@" "Binutils" "BINUTILS" "config/binutils" "N" $(BINUTILSS) config.gen/libc.in: $(LIBC_CONFIG_FILES) $(LIBC_CONFIG_FILES_2) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh choice "$@" "C library" "LIBC" "config/libc" "Y" $(LIBCS) config.gen/debug.in: $(DEBUG_CONFIG_FILES) - @$(ECHO) ' IN $(@)' + @$(CT_ECHO) ' IN $(@)' $(SILENT)$(CT_LIB_DIR)/scripts/gen_in_frags.sh menu "$@" "Debug facilities" "DEBUG" "config/debug" $(DEBUGS) #----------------------------------------------------------- # Cleaning up the mess... clean:: - @$(ECHO) " CLEAN config" + @$(CT_ECHO) " CLEAN config" $(SILENT)rm -f config 2>/dev/null || true - @$(ECHO) " CLEAN config.gen" + @$(CT_ECHO) " CLEAN config.gen" $(SILENT)rm -rf config.gen |