diff options
author | Eskil Heyn Olsen <eskil@src.gnome.org> | 2000-04-19 17:50:35 +0800 |
---|---|---|
committer | Eskil Heyn Olsen <eskil@src.gnome.org> | 2000-04-19 17:50:35 +0800 |
commit | f3a84bec06a82e86b7903d01e13589d0fcf4a2bc (patch) | |
tree | d0171cf3ea49560da2c859aec68e073387304104 | |
parent | eead62e2fd68c591b1a5863a9bfe3917d4123a3b (diff) | |
download | gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar.gz gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar.bz2 gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar.lz gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar.xz gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.tar.zst gsoc2013-evolution-f3a84bec06a82e86b7903d01e13589d0fcf4a2bc.zip |
Fixes the gnome-config check for gpilot.
svn path=/trunk/; revision=2495
-rw-r--r-- | macros/ChangeLog | 1 | ||||
-rw-r--r-- | macros/gnome-pilot.m4 | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 715d52325b..aab8817868 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,6 +1,7 @@ 2000-04-19 Eskil Heyn Olsen <deity@eskil.dk> * gnome-pilot.m4 (PILOT_LIBS): Changed the error string for gnome-pilot + (PILOT_LIBS): Fixes the gnome-config check 2000-04-10 Dan Winship <danw@helixcode.com> diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4 index 1be11e3f5e..a2ebfe5e34 100644 --- a/macros/gnome-pilot.m4 +++ b/macros/gnome-pilot.m4 @@ -102,7 +102,7 @@ AC_DEFUN([GNOME_PILOT_HOOK],[ if test x$GNOME_CONFIG = xno; then gnome_cv_pilot_found=no else - if $GNOME_CONFIG gpilot 2> /dev/null; then + if $GNOME_CONFIG --modversion gpilot 2> /dev/null; then gnome_cv_pilot_found=yes else gnome_cv_pilot_found=no |