← Back to team overview

linuxdcpp-team team mailing list archive

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

 

------------------------------------------------------------
revno: 10
committer: poy <poy@xxxxxxxxxx>
branch nick: dcpp-plugin-sdk-c
timestamp: Tue 2013-02-05 19:52:29 +0100
message:
  fix linking on Windows
modified:
  projects/make/Makefile


--
lp:dcpp-plugin-sdk-c
https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-c/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcpp-plugin-sdk-c.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-c/trunk/+edit-subscription
=== modified file 'projects/make/Makefile'
--- projects/make/Makefile	2013-02-03 21:31:52 +0000
+++ projects/make/Makefile	2013-02-05 18:52:29 +0000
@@ -43,7 +43,7 @@
 	$(TARGET)
 
 $(TARGET): $(OBJS)
-	cd $(OUTPUT_DIR); $(CC) $^ $(LINKFLAGS) -o $@$(LIBEXT)
+	cd $(OUTPUT_DIR) && $(CC) $^ $(LINKFLAGS) -o $@$(LIBEXT)
 
 ensure-dirs:
 	$(call MKDIR,$(OUTPUT_DIR)/pluginsdk)