Date: Fri, 11 Apr 1997 03:31:01 +1000 From: Bruce Evans <bde@zeta.org.au> To: davidn@unique.usn.blaze.net.au, jdp@polstra.com Cc: stable@freebsd.org Subject: Re: games hierarchy breaks 2.2.1 build Message-ID: <199704101731.DAA13803@godzilla.zeta.org.au>
next in thread | raw e-mail | index | archive | help
>> .if exists(games) && !defined(NOGAMES)
>> SUBDIR+= games
>> .endif
>>
>> This test (and others of a similar type) should be changed to:
>>
>> .if exists(${.CURDIR}/games) && !defined(NOGAMES)
>> SUBDIR+= games
>> .endif
>
>Good point. I retract my bogosity claim. :-)
I fixed most of the completely bogus `if exists()' tests in -current.
Thankyou for fixing the others :-). There are lots of unnecessary
${.OBJDIR}'s (${.OBJDIR} is usually a verbose spelling of `.') but this
makes it easy to see where ${.CURDIR} is missing. It is also missing
in at least libexec, ed and init.
Bruce
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199704101731.DAA13803>
