Fix handling of AM_CONDITIONAL

This commit is contained in:
Maciej Piechotka 2011-01-11 18:13:29 +01:00 committed by Cosimo Cecchi
parent 395ba0fd8f
commit f2533adf30

View file

@ -116,9 +116,9 @@ AC_ARG_ENABLE(nst_extension,
AC_HELP_STRING([--disable-nst-extension],
[build without nautilus-sendto extension]))
if test "x$enable_nst_extension" != "xno"; then
AM_CONDITIONAL(ENABLE_NST_EXTENSION, true)
enable_nst_extension=yes
fi
AM_CONDITIONAL(ENABLE_NST_EXTENSION, test "x$enable_nst_extension" != "xno")
dnl ==========================================================================