1
0
Fork 0

(svn r9041) -Fix [FS#650]: pkg-config doesn't know --prefix, but wants --variable=prefix (nicely spotted and fixed by stepancheg)

release/0.6
truelight 2007-03-06 22:15:57 +00:00
parent f61f1962c5
commit 524b60226d
1 changed files with 1 additions and 1 deletions

View File

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