]> err.no Git - pkg-config/commitdiff
* configure.in: Fix expansion of default pc_path as per GNU coding
authorTollef Fog Heen <tfheen@err.no>
Mon, 18 Jun 2007 21:26:01 +0000 (23:26 +0200)
committerTollef Fog Heen <tfheen@err.no>
Mon, 18 Jun 2007 21:26:01 +0000 (23:26 +0200)
standards.  Thanks to Andreas Hanke for the fix.  Freedesktop #10326

ChangeLog
configure.in

index 9b6ef4ffaf4bfcb713880d2293ae989e642e49ef..f20923b56756d57d2bf74c4d4074b9d77f20dff4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 9102c5d4ea8bfbf1ef89f09377d165f1ad1eef02..583830f554f8fb207899581703da7dd4b61156ab 100644 (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])
 
 ])