diff options
author | Tony Theodore <tonyt@logyst.com> | 2013-09-12 07:25:13 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2013-09-12 07:25:13 (GMT) |
commit | bc6104ccca368b715022542bb5ba4c51f5961ad0 (patch) | |
tree | 51e64c14c37d7783536c7303a3dcb0719f34d671 /Makefile | |
parent | c50e6911b180351c4762461e4723d291d01caadc (diff) | |
download | mxe-bc6104ccca368b715022542bb5ba4c51f5961ad0.zip mxe-bc6104ccca368b715022542bb5ba4c51f5961ad0.tar.gz mxe-bc6104ccca368b715022542bb5ba4c51f5961ad0.tar.bz2 |
Makefile: move config.guess install from binutils
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -41,6 +41,10 @@ BUILD := $(shell '$(TOP_DIR)/tools/config.guess') BUILD_PKGS := $(shell grep -l 'BUILD_$$(BUILD)' '$(TOP_DIR)/src/'*.mk | $(SED) -n 's,.*src/\(.*\)\.mk,\1,p') PATH := $(PREFIX)/$(BUILD)/bin:$(PREFIX)/bin:$(PATH) +# install config.guess for general use +$(INSTALL) -d '$(PREFIX)/bin' +$(INSTALL) -m755 '$(TOP_DIR)/tools/config.guess' '$(PREFIX)/bin/' + # use a minimal whitelist of safe environment variables ENV_WHITELIST := PATH LANG MAKE% MXE% %PROXY %proxy unexport $(filter-out $(ENV_WHITELIST),$(shell env | cut -d '=' -f1)) |