diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-10-23 17:24:34 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-10-23 17:24:34 +0000 |
commit | d8c428a7cf6b3f357b98decfdf76122324ba4b83 (patch) | |
tree | 7e1eedf24e0529bda2ffd92d93bd88962f680609 /usr.bin | |
parent | 72562d42e44b9d67f0890ed29669c52af528a465 (diff) | |
download | FreeBSD-src-d8c428a7cf6b3f357b98decfdf76122324ba4b83.zip FreeBSD-src-d8c428a7cf6b3f357b98decfdf76122324ba4b83.tar.gz |
dtc needs to be installed if MK_GPL_DTC is not set, which doesn't fit into the
SUBDIR.yes pattern well.
This fixes installation of the BSDL dtc after r288904.
Reported by: jhibbits
Discussed with: imp
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index c303d8b..ae45c95 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -209,7 +209,9 @@ SUBDIR.${MK_GAMES}+= number SUBDIR.${MK_GAMES}+= pom SUBDIR.${MK_GAMES}+= primes SUBDIR.${MK_GAMES}+= random -SUBDIR.${MK_GPL_DTC}+= dtc +.if ${MK_GPL_DTC} != "yes" +SUBDIR+= dtc +.endif SUBDIR.${MK_GROFF}+= vgrind SUBDIR.${MK_HESIOD}+= hesinfo SUBDIR.${MK_ICONV}+= iconv |