diff options
author | matthijs <matthijs@openttd.org> | 2013-03-18 14:45:06 +0000 |
---|---|---|
committer | matthijs <matthijs@openttd.org> | 2013-03-18 14:45:06 +0000 |
commit | aad927324840322c6ef3d7244b11fdacc35ef146 (patch) | |
tree | f43e194f99d7c6fa9244bbdc8f9ecbaa6559c4d8 | |
parent | 2661b5cfff01cc72d2a440b5412fe38ad45345cc (diff) | |
download | openttd-aad927324840322c6ef3d7244b11fdacc35ef146.tar.xz |
(svn r25108) -Fix: Pass $LDFLAGS_BUILD to all endian_check compilations.
- In Makefile.{lang,setting}.in the flags were already passed since r24365.
-rw-r--r-- | Makefile.src.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.src.in b/Makefile.src.in index df515e03a..2f2d8f1ad 100644 --- a/Makefile.src.in +++ b/Makefile.src.in @@ -276,7 +276,7 @@ endian_target.h: $(ENDIAN_CHECK) $(CONFIG_CACHE_ENDIAN) $(ENDIAN_CHECK): $(SRC_DIR)/endian_check.cpp $(E) '$(STAGE) Compiling and Linking $@' - $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) $(CXXFLAGS_BUILD) $< -o $@ + $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) $(CXXFLAGS_BUILD) $(LDFLAGS_BUILD) $< -o $@ # Revision files |