diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 9da6520f3..c96bbcf8d 100644 --- a/configure.ac +++ b/configure.ac @@ -182,10 +182,10 @@ 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 - MOZILLA=mozilla - elif $PKG_CONFIG --exists firefox-gtkmozembed; then + if $PKG_CONFIG --exists firefox-gtkmozembed; then MOZILLA=firefox + elif $PKG_CONFIG --exists mozilla-gtkmozembed; then + MOZILLA=mozilla elif $PKG_CONFIG --exists thunderbird-gtkmozembed; then MOZILLA=thunderbird else |