Skip to content

Commit

Permalink
Makefile_v1: tweak error message on missing openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
DDvO committed Mar 14, 2024
1 parent f3a3c58 commit 0066a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile_v1
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ CMPCLIENT=$(SET_PROXY) LD_LIBRARY_PATH="$(OUT_DIR)" $(OUT_DIR_BIN)
GENERATE_OPERATIONAL=$(OPENSSL) x509 -in creds/operational.crt -x509toreq -signkey creds/operational.pem -out creds/operational.csr -passin pass:12345 2>/dev/null
.phony: run_demo
run_demo: $(OUT_DIR_BIN)
@which $(OPENSSL) >/dev/null || (echo "cannot find $(OPENSSL), please install it"; false)
@which $(OPENSSL) >/dev/null || (echo "cannot find $(OPENSSL)"; false)
@/bin/echo -e "\n##### running cmpClient demo using $(CA_SECTION) #####\n"
$(CMPCLIENT) imprint -section $(CA_SECTION) $(EXTRA_OPTS)
@/bin/echo -e "\nValidating own CMP client cert"
Expand Down

0 comments on commit 0066a5f

Please sign in to comment.