autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: AM_AUTOCONF does not work?


From: Andreas Schwab
Subject: Re: AM_AUTOCONF does not work?
Date: Mon, 09 Feb 2004 11:53:31 +0100
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (gnu/linux)

Jose Roman Bilbao <address@hidden> 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, address@hidden
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

[Prev in Thread] Current Thread [Next in Thread]