aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxen
diff options
context:
space:
mode:
Diffstat (limited to 'tools/libxen')
-rw-r--r--tools/libxen/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/libxen/Makefile b/tools/libxen/Makefile
index 2e3dcad2ff..b66f0bc679 100644
--- a/tools/libxen/Makefile
+++ b/tools/libxen/Makefile
@@ -22,12 +22,12 @@ MAJOR = 1.0
MINOR = 0
CFLAGS += -Iinclude \
- $(shell xml2-config --cflags) \
- $(shell curl-config --cflags) \
+ $(shell $(XML2_CONFIG) --cflags) \
+ $(shell $(CURL_CONFIG) --cflags) \
-fPIC
-LDFLAGS += $(shell xml2-config --libs) \
- $(shell curl-config --libs)
+LDFLAGS += $(shell $(XML2_CONFIG) --libs) \
+ $(shell $(CURL_CONFIG) --libs)
LIBXENAPI_HDRS = $(wildcard include/xen/api/*.h) include/xen/api/xen_all.h
LIBXENAPI_OBJS = $(patsubst %.c, %.o, $(wildcard src/*.c))