aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpaging
diff options
context:
space:
mode:
authorIan Jackson <ian.jackson@eu.citrix.com>2012-04-11 14:14:13 +0100
committerIan Jackson <ian.jackson@eu.citrix.com>2012-04-11 14:14:13 +0100
commit9c09f9dec695c7035a4ab6a338e767d0d8a54b0c (patch)
tree7e022a163918a40df6c50c9ed533595fd86bd3d9 /tools/xenpaging
parent361145d1e38e9ea99fe29b025ef38e6caeb16fd2 (diff)
downloadxen-9c09f9dec695c7035a4ab6a338e767d0d8a54b0c.tar.gz
xen-9c09f9dec695c7035a4ab6a338e767d0d8a54b0c.tar.bz2
xen-9c09f9dec695c7035a4ab6a338e767d0d8a54b0c.zip
tools: Use PTHREAD_CFLAGS, _LDFLAGS, _LIBS
Replace all literal occurrences of -lpthread and -pthread in Makefiles by references to PTHREAD_CFLAGS, PTHREAD_LDFLAGS and PTHREAD_LIBS. These are the new variables set by configure, and currently expand to -pthread on the compilation and link lines as is required. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Diffstat (limited to 'tools/xenpaging')
-rw-r--r--tools/xenpaging/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/xenpaging/Makefile b/tools/xenpaging/Makefile
index 08230a6af5..548d9ddaf6 100644
--- a/tools/xenpaging/Makefile
+++ b/tools/xenpaging/Makefile
@@ -1,8 +1,9 @@
XEN_ROOT=$(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
-CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenstore)
-LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore) -pthread
+CFLAGS += $(CFLAGS_libxenctrl) $(CFLAGS_libxenstore) $(PTHREAD_CFLAGS)
+LDLIBS += $(LDLIBS_libxenctrl) $(LDLIBS_libxenstore) $(PTHREAD_LIBS)
+LDFLAGS += $(PTHREAD_LDFLAGS)
POLICY = default