Date: Sat, 20 Jan 2001 23:53:43 -0500 From: "Matthew Emmerton" <matt@gsicomp.on.ca> To: "Gustavo Vieira Goncalves Coelho Rios" <gustavo@ifour.com.br>, <questions@FreeBSD.ORG> Subject: Re: Why make complains ? Message-ID: <005201c08366$21f34db0$1200a8c0@gsicomp.on.ca> References: <3A6A6704.F817CEE4@ifour.com.br>
next in thread | previous in thread | raw e-mail | index | archive | help
> I am trying to get this Makefile running: > > > DEP_EXT = FCGI_IO > > FCGI_IO ?= /usr/local/include > > main : > .for _DEP_EXT in ${DEP_EXT} > .if ${_DEP_EXT} == FCGI_IO > echo ${DEP_EXT} > .endif > .endfor You need the conditional of the if statement in brackets: .if (${_DEP_EXT} == FCGI_IO) -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?005201c08366$21f34db0$1200a8c0>