* configure.in: Fix expansion of default pc_path as per GNU coding

standards.  Thanks to Andreas Hanke for the fix.  Freedesktop #10326
This commit is contained in:
Tollef Fog Heen 2007-06-18 23:26:01 +02:00
parent 8ac159cd5e
commit b07d45d839
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,9 @@
2007-06-18 Tollef Fog Heen <tfheen@err.no>
* 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

View file

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