summaryrefslogtreecommitdiffstats
path: root/apps/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-06-18 19:02:12 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-06-18 19:02:12 +0000
commit4a18d5c89bc6c8b96a4c79f542e974a54148d257 (patch)
treef9d40693f7bda92d7ebb0697f6659f5f38dac25f /apps/Makefile
parent174b26c497cc384041dfd1ecdbbc26334ea66fe8 (diff)
Don't add trailing slash to FIPSDIR: it causes problems with Windows builds.
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 658a09a2f2..4df7a3f03c 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -154,7 +154,7 @@ $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
shlib_target="$(SHLIB_TARGET)"; \
elif [ -n "$(FIPSCANLIB)" ]; then \
- FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)bin/fipsld; export CC FIPSLD_CC; \
+ FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; export CC FIPSLD_CC; \
fi; \
LIBRARIES="$(LIBSSL) $(LIBKRB5) $(LIBCRYPTO)" ; \
$(MAKE) -f $(TOP)/Makefile.shared -e \