summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2009-09-05 11:51:36 +0300
committerM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2009-09-05 11:51:36 +0300
commitd27e4146e89cc2b0d0f2e6672be9017e724a7c28 (patch)
treee2cd6f59b0d760f1df7f8e9aae9e630c37c73e7b
parent7bdab74e1923e9be251ae0a0f8a1eef268b91fbd (diff)
Makefile: Invoke pkg-config using the shell.
$(pkg-config) is not a GNU Make extension.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05ec216..6219466 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ all: $(ALL_TRACES)
lzma -cd $< | ./csi-bind > $@
csi-bind: csi-bind.c
- $(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(pkg-config cairo --libs) -o $@
+ $(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@
csi-trace: csi-trace.c
$(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@