[cairo-commit] Makefile

M. Joonas Pihlaja joonas at kemper.freedesktop.org
Sat Sep 5 01:52:44 PDT 2009


 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d27e4146e89cc2b0d0f2e6672be9017e724a7c28
Author: M Joonas Pihlaja <jpihlaja at cc.helsinki.fi>
Date:   Sat Sep 5 11:51:36 2009 +0300

    Makefile: Invoke pkg-config using the shell.
    
    $(pkg-config) is not a GNU Make extension.

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 $@
 


More information about the cairo-commit mailing list