summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-01-26 00:39:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-01-26 00:39:55 +0000
commit5ae2774b898eb717097728061279aeba81ef9e28 (patch)
tree8bfb5ac8692a5e55ae9ac17a4dc234e564f078ba
parent89d18a93bf0f5bf3c180486cfd45b758dfb180d6 (diff)
Use correct shared lib name in fips-1.0
-rw-r--r--fips-1.0/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fips-1.0/Makefile b/fips-1.0/Makefile
index 55decc6f10..03e04ed6a9 100644
--- a/fips-1.0/Makefile
+++ b/fips-1.0/Makefile
@@ -34,7 +34,7 @@ FDIRS=sha rand des aes dsa rsa dh hmac
GENERAL=Makefile README fips-lib.com install.com
LIB= $(TOP)/libcrypto.a
-SHARED_LIB= libcrypto$(SHLIB_EXT)
+SHARED_LIB= $(FIPSCANLIB)$(SHLIB_EXT)
LIBSRC=fips.c fips_err_wrapper.c
LIBOBJ=fips.o fips_err_wrapper.o
@@ -141,7 +141,7 @@ lib: $(FIPSCANLOC) delexobj
@touch lib
shared: fips_premain_dso$(EXE_EXT)
- if [ -n "$(SHARED_LIBS)" -a "$(FIPSCANLIB)" = "libfips" ]; then \
+ if [ -n "$(SHARED_LIBS)" ]; then \
(cd ..; $(MAKE) FIPSLD_CC=$(CC) FIPSLD=fips-1.0/fipsld $(SHARED_LIB)); \
fi