1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

Fix an isssue with OpenSSL installation that was causing all_sdk_install

to fail on windows.
This commit is contained in:
Alessio Morale 2014-01-14 11:05:16 +01:00
parent c9fad94b51
commit 1efefbd586
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# *************** OpenPilot commits guidelines ***************
# Each commit needs to have a message like the following sample:
# OP-1150 UI for thermal calibration: Connect State machine to UI

View File

@ -564,7 +564,7 @@ ifeq ($(UNAME), Windows)
$(eval $(call TOOL_INSTALL_TEMPLATE,openssl,$(OPENSSL_DIR),$(OPENSSL_URL),$(notdir $(OPENSSL_URL))))
ifeq ($(shell [ -d "$(OPENSSL_DIR)" ] && $(ECHO) "exists"), exists)
export OPENSSL := $(OPENSSL_DIR)
export OPENSSL := "$(OPENSSL_DIR)/bin/openssl"
else
# not installed, hope it's in the path...
# $(info $(EMPTY) WARNING $(call toprel, $(OPENSSL_DIR)) not found (make openssl_install), using system PATH)