[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Variable Expansion
From: |
Robert Collins |
Subject: |
Re: Variable Expansion |
Date: |
05 Sep 2001 18:15:53 +1000 |
On Wed, 2001-09-05 at 08:52, Fausto Sanchez wrote:
> Hi everyone,
>
> The reason it gives me three errors is because I reference top_srcdir three
> times
> in the configure.in file as $(top_srcdir). So in my configure.in file I
> have the following:
>
> INCLUDES=" -I$(top_srcdir)/isan/include
> -I$(top_srcdir)/isan/platform/common/include "
The shell is expanding during configure. try using single quotes '
instead of double quotes ".
Rob