diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-01-06 21:49:05 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-04-06 12:08:55 +0200 |
commit | aaa6410fbb07659c183331f52a88cd31eb080cc2 (patch) | |
tree | 130b2df716822e9b7c61817879300e3630642bca /onlineupdate | |
parent | c5dd2efe9d1ed467cfe7c601300b130d27b73139 (diff) |
onlineupdate: linking libpthread should work better than including it
Change-Id: Ib19a5651f7e30108e8fbcdc6f7924c47cbeb4434
(cherry picked from commit dd13ad84693e8d22672f4b5d588c0611ab1a0a50)
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/Executable_updater.mk | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/onlineupdate/Executable_updater.mk b/onlineupdate/Executable_updater.mk index 5c56edad0ba5..fba7e3c7bcd7 100644 --- a/onlineupdate/Executable_updater.mk +++ b/onlineupdate/Executable_updater.mk @@ -9,24 +9,13 @@ $(eval $(call gb_Executable_Executable,updater)) -ifeq ($(OS),WNT) -$(eval $(call gb_Executable_set_include,updater,\ - -I$(SRCDIR)/onlineupdate/source/update/src \ - -I$(SRCDIR)/onlineupdate/source/update/inc \ - -I$(SRCDIR)/onlineupdate/source/update/common \ - -I$(SRCDIR)/onlineupdate/source/update/updater/xpcom/glue \ - $$(INCLUDE) \ -)) -else $(eval $(call gb_Executable_set_include,updater,\ -I$(SRCDIR)/onlineupdate/source/update/src \ -I$(SRCDIR)/onlineupdate/source/update/inc \ -I$(SRCDIR)/onlineupdate/source/update/common \ -I$(SRCDIR)/onlineupdate/source/update/updater/xpcom/glue \ - -lpthread \ $$(INCLUDE) \ )) -endif ifeq ($(OS),WNT) $(eval $(call gb_Executable_add_libs,updater,\ @@ -43,6 +32,7 @@ $(eval $(call gb_Executable_add_libs,updater,\ -lXrender \ -lSM \ -lICE \ + -lpthread \ )) endif |