diff options
author | truelight <truelight@openttd.org> | 2007-01-02 22:29:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-02 22:29:26 +0000 |
commit | c84341231309f982423467e4d0f0d745f580bf3a (patch) | |
tree | d998caa831dc22c1212e74ee360c415413333bdd | |
parent | 71a0357ee0a7f481a50e9b70214c16e5eb2dd09d (diff) | |
download | openttd-c84341231309f982423467e4d0f0d745f580bf3a.tar.xz |
(svn r7776) [Configure] -Fix: no need to show LIPO actions, use $(Q)
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 8f6b1d3f7..a50d9da83 100644 --- a/Makefile.in +++ b/Makefile.in @@ -41,9 +41,9 @@ ifdef LIPO # and so we have have to combine the binaries into one big binary # Remove the last binary made by the last compiled target - rm -f $(BIN_DIR)/$(TTD) + $(Q)rm -f $(BIN_DIR)/$(TTD) # Make all the binaries into one - $(LIPO) -create -output $(BIN_DIR)/$(TTD) $(TTDS) + $(Q)$(LIPO) -create -output $(BIN_DIR)/$(TTD) $(TTDS) endif config.cache: $(CONFIG_CACHE_SOURCE_LIST) $(CONFIGURE_FILES) |