diff options
Diffstat (limited to 'build/rules.mk.in')
-rw-r--r-- | build/rules.mk.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rules.mk.in b/build/rules.mk.in index 283b515d25..1f4ea89529 100644 --- a/build/rules.mk.in +++ b/build/rules.mk.in @@ -44,8 +44,8 @@ CXX_COMPILE = $(BASE_CXX) $(PICFLAGS) SH_COMPILE = $(LIBTOOL) --mode=compile $(BASE_CC) $(SHLTCFLAGS) -c $< && touch $@ SH_CXX_COMPILE = $(LIBTOOL) --mode=compile $(BASE_CXX) $(SHLTCFLAGS) -c $< && touch $@ -LT_COMPILE = $(LIBTOOL) --mode=compile $(COMPILE) $(LTCFLAGS) -c $< && touch $@ -LT_CXX_COMPILE = $(LIBTOOL) --mode=compile $(CXX_COMPILE) $(LTCFLAGS) -c $< && touch $@ +LT_COMPILE = $(LIBTOOL) --mode=compile $(COMPILE) $(LTCFLAGS) -c $< -o $@ +LT_CXX_COMPILE = $(LIBTOOL) --mode=compile $(CXX_COMPILE) $(LTCFLAGS) -c $< -o $@ # Link-related commands |