------------------------------------------------------------ revno: 11 committer: poy <[email protected]> branch nick: dcpp-plugin-sdk-cpp timestamp: Tue 2013-02-05 19:52:47 +0100 message: fix linking on Windows modified: projects/make/Makefile
-- lp:dcpp-plugin-sdk-cpp https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk Your team Dcplusplus-team is subscribed to branch lp:dcpp-plugin-sdk-cpp. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk/+edit-subscription
=== modified file 'projects/make/Makefile' --- projects/make/Makefile 2013-02-03 21:30:26 +0000 +++ projects/make/Makefile 2013-02-05 18:52:47 +0000 @@ -53,7 +53,7 @@ $(TARGET) $(TARGET): $(OBJS) - cd $(OUTPUT_DIR); $(CXX) $^ $(LINKFLAGS) -o $@$(LIBEXT) + cd $(OUTPUT_DIR) && $(CXX) $^ $(LINKFLAGS) -o $@$(LIBEXT) ensure-dirs: $(call MKDIR,$(OUTPUT_DIR)/pluginsdk)
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : [email protected] Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp

