← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk] Rev 11: fix linking on Windows

 

------------------------------------------------------------
revno: 11
committer: poy <poy@xxxxxxxxxx>
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)