diff options
author | miod <> | 2014-04-17 22:06:19 +0000 |
---|---|---|
committer | miod <> | 2014-04-17 22:06:19 +0000 |
commit | 8fc27bf172fd1c8101bec2ec91eb1c82b66064fd (patch) | |
tree | bbfa4107a43c83a13695a645b982fefe65fc5ffb /src | |
parent | d5adbf945cf63094d02de09a05254212ca4b2060 (diff) | |
download | openbsd-8fc27bf172fd1c8101bec2ec91eb1c82b66064fd.tar.gz openbsd-8fc27bf172fd1c8101bec2ec91eb1c82b66064fd.tar.bz2 openbsd-8fc27bf172fd1c8101bec2ec91eb1c82b66064fd.zip |
Use !defined() rather than empty().
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile index c652cdd400..3063963569 100644 --- a/src/lib/libcrypto/crypto/Makefile +++ b/src/lib/libcrypto/crypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.21 2014/04/17 20:43:42 tedu Exp $ | 1 | # $OpenBSD: Makefile,v 1.22 2014/04/17 22:06:19 miod Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | 4 | ||
@@ -433,7 +433,7 @@ obj_dat.h: obj_mac.h | |||
433 | .include "${.CURDIR}/arch/${MACHINE_CPU}/Makefile.inc" | 433 | .include "${.CURDIR}/arch/${MACHINE_CPU}/Makefile.inc" |
434 | .endif | 434 | .endif |
435 | 435 | ||
436 | .if empty (SSLASM) | 436 | .if !defined(SSLASM) |
437 | CFLAGS+=-DOPENSSL_NO_ASM | 437 | CFLAGS+=-DOPENSSL_NO_ASM |
438 | SRCS+= aes_core.c aes_cbc.c | 438 | SRCS+= aes_core.c aes_cbc.c |
439 | SRCS+= bf_enc.c | 439 | SRCS+= bf_enc.c |