diff options
author | markm <markm@FreeBSD.org> | 2003-09-27 17:27:02 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-09-27 17:27:02 +0000 |
commit | b506168cfbfdb2df78727022062d3c38a88a5b45 (patch) | |
tree | d80f1742ed12814697b851f23ed9c463248b3eb9 /rescue | |
parent | a3be99fe637e427fe00d0fca5c6389946bf36e27 (diff) | |
download | FreeBSD-src-b506168cfbfdb2df78727022062d3c38a88a5b45.zip FreeBSD-src-b506168cfbfdb2df78727022062d3c38a88a5b45.tar.gz |
No need to check for the directory, fols are assumed to have all the
correct sources. Only check the crypto macros.
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 3e78ec4..4d8c442 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -68,7 +68,7 @@ CRUNCH_PROGS_bin= cat chflags chio chmod cp date dd df echo \ ed expr getfacl hostname kenv kill ln ls mkdir mv pax ps pwd \ realpath rm rmdir setfacl sh stty sync test CRUNCH_LIBS+= -lcrypt -ledit -lkvm -ll -lm -ltermcap -lutil -.if exists(${.CURDIR}/../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) CRUNCH_LIBS+= -lcrypto .endif |