summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-26 19:56:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-26 19:56:10 +0000
commitbab19a2ac2738c8155ddbb2c4617490a5a58d99f (patch)
treeba0b5bafdda20addfcf19b3068aec85a1b546928
parent582eb96d156ec2b6cd41e8f0e17ae30beaadec8f (diff)
quote HOSTCC in case it isn't defined
-rw-r--r--fips/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/Makefile b/fips/Makefile
index 720a883a69..546b54b2fd 100644
--- a/fips/Makefile
+++ b/fips/Makefile
@@ -123,7 +123,7 @@ fips_premain_dso$(EXE_EXT): fips_premain.c
$(FIPSLIBDIR)fipscanister.o ../libcrypto.a $(EX_LIBS)
# this is executed only when linking with external fipscanister.o
fips_standalone_sha1$(EXE_EXT): sha/fips_standalone_sha1.c
- if [ -z $(HOSTCC) ] ; then \
+ if [ -z "$(HOSTCC)" ] ; then \
$(CC) $(CFLAGS) -DFIPSCANISTER_O -o $@ sha/fips_standalone_sha1.c $(FIPSLIBDIR)fipscanister.o $(EX_LIBS) ; \
else \
$(HOSTCC) $(HOSTCFLAGS) -o $ $@ -I../include -I../crypto sha/fips_standalone_sha1.c ../crypto/sha/sha1dgst.c ; \