From: Tollef Fog Heen Date: Mon, 18 Jun 2007 21:26:01 +0000 (+0200) Subject: * configure.in: Fix expansion of default pc_path as per GNU coding X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b07d45d839e81803c06fe6062ed7b0c0428b9ed3;p=pkg-config * configure.in: Fix expansion of default pc_path as per GNU coding standards. Thanks to Andreas Hanke for the fix. Freedesktop #10326 --- diff --git a/ChangeLog b/ChangeLog index 9b6ef4f..f20923b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-06-18 Tollef Fog Heen + * configure.in: Fix expansion of default pc_path as per GNU coding + standards. Thanks to Andreas Hanke for the fix. + Freedesktop #10326 + * pkg.c (recursive_fill_list): Make sure to act recursively with Requires.private, making them much more useful. Special thanks to Matthias Clasen for lots and lots of nagging. Freedesktop #8788 diff --git a/configure.in b/configure.in index 9102c5d..583830f 100644 --- a/configure.in +++ b/configure.in @@ -16,9 +16,8 @@ AC_DEFUN([PKG_CONFIG_FIND_PC_PATH], [ pc_path="$withval" AC_MSG_CHECKING([for default search path for .pc files]) AC_MSG_RESULT([$pc_path])], - [pc_path="$libdir/pkgconfig:$datadir/pkgconfig"]) + [pc_path='${libdir}/pkgconfig:${datadir}/pkgconfig']) AC_SUBST([pc_path]) -dnl AC_DEFINE_UNQUOTED(PKG_CONFIG_PC_PATH,["$pc_path"],[Default search path for .pc files]) ])