From 9eb62560dfe5bc0dc1b26859859aa85a2b80d94f Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 6 Mar 2007 22:15:57 +0000 Subject: [PATCH] (svn r9041) -Fix [FS#650]: pkg-config doesn't know --prefix, but wants --variable=prefix (nicely spotted and fixed by stepancheg) --- config.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.lib b/config.lib index ee4c1ffe51..c38f4af67c 100644 --- a/config.lib +++ b/config.lib @@ -808,7 +808,7 @@ make_cflags_and_ldflags() { if [ "$enable_static" != "0" ]; then if [ "$os" = "OSX" ]; then - LIBS="$LIBS `$fontconfig_config --prefix`/lib/libfontconfig.a" + LIBS="$LIBS `$fontconfig_config --variable=prefix`/lib/libfontconfig.a" else LIBS="$LIBS `$fontconfig_config --libs --static | tr '\n\r' ' '`" fi