summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-01-14 11:10:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-01-14 11:10:33 +0000
commit3eac70a35633942d5ce0e45ac0e0e6bd3e1849a8 (patch)
tree8ac7fae17e39bda9b6e5ba0e374198432004bdfb /fips
parent5f3ad8f82ca018a4fe97366cf0570772da875279 (diff)
Some platforms need $(EX_LIBS) when building fips_standalone_sha1 from
an external fipscanister.o
Diffstat (limited to 'fips')
-rw-r--r--fips/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/Makefile b/fips/Makefile
index d6dcb79a28..4e016b7b0e 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
- $(CC) $(CFLAGS) -DFIPSCANISTER_O -o $@ sha/fips_standalone_sha1.c $(FIPSLIBDIR)fipscanister.o
+ $(CC) $(CFLAGS) -DFIPSCANISTER_O -o $@ sha/fips_standalone_sha1.c $(FIPSLIBDIR)fipscanister.o $(EX_LIBS)
subdirs:
@target=all; $(RECURSIVE_MAKE)