diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-03-07 20:59:35 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-03-07 20:59:35 (GMT) |
commit | 1b08fbc264f6d13722785a7555e654497f9ce9be (patch) | |
tree | 777f4728f603d3dee12a818f343f0769c4e71f69 /Makefile | |
parent | b2c49fd8f00c8da2b394484865462540fb47fdb5 (diff) | |
download | mxe-1b08fbc264f6d13722785a7555e654497f9ce9be.zip mxe-1b08fbc264f6d13722785a7555e654497f9ce9be.tar.gz mxe-1b08fbc264f6d13722785a7555e654497f9ce9be.tar.bz2 |
bugfix: unset any environment variables which might cause trouble
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -15,6 +15,25 @@ SHELL := bash SED := $(shell gsed --help >/dev/null 2>&1 && echo g)sed INSTALL := $(shell ginstall --help >/dev/null 2>&1 && echo g)install +# unset any environment variables which might cause trouble +AR = +CC = +CFLAGS = +CPP = +CPPFLAGS = +CROSS = +CXX = +CXXCPP = +CXXFLAGS = +EXEEXT = +LD = +LDFLAGS = +LIBS = +NM = +PKG_CONFIG = +RANLIB = +STRIP = + SHORT_PKG_VERSION = \ $(word 1,$(subst ., ,$($(1)_VERSION))).$(word 2,$(subst ., ,$($(1)_VERSION))) |