diff options
author | Havoc Pennington <hp@pobox.com> | 1999-09-02 05:28:41 +0800 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 1999-09-02 05:28:41 +0800 |
commit | acfd8adff8c507d6ee738993866aefa12361b172 (patch) | |
tree | d52edbca39d7d43f7d55e54a4ccece61c756b039 /macros/gnome-xml-check.m4 | |
parent | 60436b516d52c29b1d4a647fdd9f1fb942efc94b (diff) | |
download | gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.gz gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.bz2 gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.lz gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.xz gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.tar.zst gsoc2013-evolution-acfd8adff8c507d6ee738993866aefa12361b172.zip |
If you're going to AC_PATH_PROG then use the prog you find :-)
1999-09-01 Havoc Pennington <hp@pobox.com>
* gnome-xml-check.m4: If you're going to AC_PATH_PROG then use the
prog you find :-)
svn path=/trunk/; revision=1156
Diffstat (limited to 'macros/gnome-xml-check.m4')
-rw-r--r-- | macros/gnome-xml-check.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/gnome-xml-check.m4 b/macros/gnome-xml-check.m4 index 5d379d16e1..2410f35db7 100644 --- a/macros/gnome-xml-check.m4 +++ b/macros/gnome-xml-check.m4 @@ -17,12 +17,12 @@ AC_DEFUN([GNOME_XML_HOOK],[ AC_CHECK_LIB(xml, xmlNewDoc, [ $1 AC_SUBST(GNOME_XML_LIB) - GNOME_XML_LIB=`gnome-config --libs xml` + GNOME_XML_LIB=`$GNOME_CONFIG --libs xml` ], [ if test x$2 = xfailure; then AC_MSG_ERROR(Could not link sample xml program) fi - ], `gnome-config --libs xml`) + ], `$GNOME_CONFIG --libs xml`) ]) AC_DEFUN([GNOME_XML_CHECK], [ |