summaryrefslogtreecommitdiff
path: root/Makefile.org
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-26 22:10:28 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-26 22:10:28 +0000
commitae6cb5483ef687ff52bdf59fca0d13651a84759a (patch)
tree17b6baf1227738a9b160714bda0a58f5bc030874 /Makefile.org
parenta168ec1d27afc234791de0e4ee6a784bad411b22 (diff)
downloadopenssl-new-ae6cb5483ef687ff52bdf59fca0d13651a84759a.tar.gz
Use || instead of && so build doesn't fail.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index 56abf480f9..1e2e466ef5 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -286,7 +286,7 @@ build_testapps:
@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
fips_premain_dso$(EXE_EXT): libcrypto.a
- [ -n "$(FIPSCANLIB)" ] && $(CC) $(CFLAGS) \
+ [ -z "$(FIPSCANLIB)" ] || $(CC) $(CFLAGS) \
-DFINGERPRINT_PREMAIN_DSO_LOAD -o $@ \
$(FIPSLIBDIR)fips_premain.c $(FIPSLIBDIR)fipscanister.o \
libcrypto.a $(EX_LIBS)