diff options
author | mux <mux@FreeBSD.org> | 2006-03-03 21:12:05 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2006-03-03 21:12:05 +0000 |
commit | 31458bf44108a6fdbee78dbc3d2005e8f7442200 (patch) | |
tree | 5a1700d40b8cf6e3940b149a896817360a02c2c3 /usr.bin/Makefile | |
parent | a57a1bf0d8dfbe8f92bb6526ca0e42478210edf0 (diff) | |
download | FreeBSD-src-31458bf44108a6fdbee78dbc3d2005e8f7442200.zip FreeBSD-src-31458bf44108a6fdbee78dbc3d2005e8f7442200.tar.gz |
Don't build csup if NO_CRYPT or NO_OPENSSL is defined, since we depend
on those.
Reported by: marius
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 426bab5..a1961e5 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -41,7 +41,7 @@ SUBDIR= alias \ compile_et \ compress \ csplit \ - csup \ + ${_csup} \ ctags \ cut \ ${_dig} \ @@ -258,6 +258,7 @@ _calendar= calendar .if !defined(NO_CRYPT) && !defined(NO_OPENSSL) _chkey= chkey _newkey= newkey +_csup= csup .endif .if defined(YES_HESIOD) |