diff --git a/ChangeLog b/ChangeLog index f72fea0..c523d6b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,12 @@ * NEWS: update for 0.16 +2005-03-26 Tollef Fog Heen + + * configure.in: Fix default search path for .pc files. (This was + done after the change above but before tagging. Put here to avoid + confusion whether this went into the release). + 2005-03-26 Tollef Fog Heen * AUTHORS: Add myself. diff --git a/configure.in b/configure.in index 557efc2..9bc0450 100644 --- a/configure.in +++ b/configure.in @@ -16,7 +16,7 @@ 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=`echo $pkglibdir:$pkgdatadir`]) + [pc_path="$libdir/$PACKAGE:$datadir/$PACKAGE"]) AC_SUBST([pc_path]) dnl AC_DEFINE_UNQUOTED(PKG_CONFIG_PC_PATH,["$pc_path"],[Default search path for .pc files])