Russell Shaw <[EMAIL PROTECTED]> writes:

> Hi,
> In configure.in, i have:
>
>   AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
>
> and it gets turned into:
>
> if test x$enable_gtk_doc = xyes; then
>   ENABLE_GTK_DOC_TRUE=
>   ENABLE_GTK_DOC_FALSE='#'
> else
>   ENABLE_GTK_DOC_TRUE='#'
>   ENABLE_GTK_DOC_FALSE=
> fi
>
> Isn't this backward?

Look at the generated Makefile.in: everything prefixed with
@ENABLE_GTK_DOC_TRUE@ is enabled (not commented out) when the condition is
true.

Andreas.

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


_______________________________________________
Autoconf mailing list
Autoconf@gnu.org
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to