diff options
author | marcel <marcel@FreeBSD.org> | 2003-09-24 00:43:48 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-09-24 00:43:48 +0000 |
commit | ccbfee854ef39c7961278d4a49635bbc2cbc01a6 (patch) | |
tree | 05c0c9c830808aed00d01e95183eeb7b739df2b2 /usr.bin/Makefile | |
parent | 153abc393cf68bff18d3bfda1abe3a4a0122c781 (diff) | |
download | FreeBSD-src-ccbfee854ef39c7961278d4a49635bbc2cbc01a6.zip FreeBSD-src-ccbfee854ef39c7961278d4a49635bbc2cbc01a6.tar.gz |
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
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 3f8372e..1a61881 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -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 \ |