Jose Roman Bilbao <[EMAIL PROTECTED]> writes:

> Hi,
>
> Can anybody tell my why this code is not substituting the variable
> WITH_OPENGL in my automake.am and how should I write it to work?
>
> MDL_HAVE_OPENGL
>
> AM_CONDITIONAL( WITH_OPENGL, test -n $GL_FLAGS)
> #AM_CONDITIONAL( WITH_OPENGL, test -n $GL_LIBS)

You need to fix the quoting.

AM_CONDITIONAL( WITH_OPENGL, test -n "$GL_FLAGS")
#AM_CONDITIONAL( WITH_OPENGL, test -n "$GL_LIBS")

Andreas.

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux AG, 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."


Reply via email to