Fix bug introduced in version 1.246 with the addition of NO_TOOLCHAIN.

The c89, c99, lex and yacc subdirectories were bogusly added to the
${MACHINE_ARCH} != "ia64" case.

Pointy hat: phk
This commit is contained in:
Marcel Moolenaar 2003-09-24 00:43:48 +00:00
parent 473851ba04
commit 42845ac591
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120394

View File

@ -10,10 +10,6 @@
.if ${MACHINE_ARCH} != "ia64"
.if !defined(NO_TOOLCHAIN)
_xlint= xlint
_lex= lex
_yacc= yacc
_c89= c89
_c99= c99
.endif
.endif
@ -24,6 +20,13 @@ _gprof= gprof
_truss= truss
.endif
.if !defined(NO_TOOLCHAIN)
_c89= c89
_c99= c99
_lex= lex
_yacc= yacc
.endif
SUBDIR= alias \
apply \
asa \