autoconf
[Top][All Lists]
Advanced

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

Re: variables in configure.ac


From: Keith MARSHALL
Subject: Re: variables in configure.ac
Date: Mon, 12 Sep 2005 15:31:21 +0100

Matthias Langer wrote:
> I'm trying to to the following in my configure.ac:
>
> VTK_LIBS=$vtk_lib_path
> VTK_LIBS+="-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics 
> -lvtkHybrid" \
>                        "-lvtkImaging -lvtkIO -lvtkRendering"
>
> However, when i run configure, i get
> ...: VTK_LIBS+=-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics 
> -lvtkHybrid: command not found
>
> Can anybody tell my what i'm doing wrong ?

Looks like you are confusing shell syntax and Makefile syntax.

Try:
  VTK_LIBS=$vtk_lib_path
  VTK_LIBS="$VTK_LIBS -lvtkFiltering ..."

HTH.

Keith.




reply via email to

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