From 5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 21 Feb 2005 18:40:44 +0000 Subject: Use $PKG_CONFIG. 2005-02-21 Christian Persch * configure.ac: Use $PKG_CONFIG. --- ChangeLog | 6 ++++++ configure.ac | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index eb06e2e3d..9107006dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-02-21 Christian Persch + + * configure.ac: + + Use $PKG_CONFIG. + 2005-02-21 Christian Persch * src/ephy-shell.c: (ephy_shell_new_tab_full): diff --git a/configure.ac b/configure.ac index 605ea8c51..4527232c2 100644 --- a/configure.ac +++ b/configure.ac @@ -170,11 +170,11 @@ AC_ARG_WITH([mozilla], dnl try to autodetect: if mozilla exists, use it, else try firefox, then thunderbird if test "x$MOZILLA" = "x"; then - if pkg-config --exists mozilla-gtkmozembed; then + if $PKG_CONFIG --exists mozilla-gtkmozembed; then MOZILLA=mozilla - elif pkg-config --exists firefox-gtkmozembed; then + elif $PKG_CONFIG --exists firefox-gtkmozembed; then MOZILLA=firefox - elif pkg-config --exists thunderbird-gtkmozembed; then + elif $PKG_CONFIG --exists thunderbird-gtkmozembed; then MOZILLA=thunderbird else AC_MSG_ERROR([no mozilla installation found]) -- cgit v1.2.3