File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ $(JUCE_DIR)/.stamp-juce:
6666 fi ; \
6767 done
6868 echo "For CMake build we need another standard patch..."
69- if [ "$(AAP_JUCE_CMAKE_SKIP_DEFAULT_PATCHES)" == "" ] ; then \
69+ if [ "$(AAP_JUCE_CMAKE_SKIP_DEFAULT_PATCHES)" = "" ] ; then \
7070 if [ "$(AAP_JUCE_CMAKE_PATCH_HOSTING)" != "" ] ; then \
7171 PREV_DIR=$(PWD) && cd $(JUCE_DIR) && git apply $(AAP_JUCE_DIR)/JUCE-support-Android-CMake-hosting.patch --ignore-space-change && cd $(PREV_DIR) ; \
7272 else \
@@ -85,7 +85,7 @@ $(APP_SRC_DIR)/.stamp-app:
8585
8686build-aap-core:
8787 if [ ! -f $(AAP_DIR)/local.properties ] ; then \
88- if [ "`uname`" == "Darwin" ] ; then \
88+ if [ "`uname`" = "Darwin" ] ; then \
8989 echo "sdk.dir=$(HOME)/Library/Android/sdk" > $(AAP_DIR)/local.properties ; \
9090 else \
9191 echo "sdk.dir=$(HOME)/Android/Sdk" > $(AAP_DIR)/local.properties ; \
@@ -95,7 +95,7 @@ build-aap-core:
9595
9696build-app-cmake:
9797 if [ ! -f local.properties ] ; then \
98- if [ "`uname`" == "Darwin" ] ; then \
98+ if [ "`uname`" = "Darwin" ] ; then \
9999 echo "sdk.dir=$(HOME)/Library/Android/sdk" > local.properties ; \
100100 else \
101101 echo "sdk.dir=$(HOME)/Android/Sdk" > local.properties ; \
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ $(PROJUCER_BIN_DARWIN):
9999.PHONY:
100100build-aap:
101101 if [ ! -f $(AAP_DIR)/local.properties ] ; then \
102- if [ "`uname`" == "Darwin" ] ; then \
102+ if [ "`uname`" = "Darwin" ] ; then \
103103 echo "sdk.dir=$(HOME)/Library/Android/sdk" > $(AAP_DIR)/local.properties ; \
104104 else \
105105 echo "sdk.dir=$(HOME)/Android/Sdk" > $(AAP_DIR)/local.properties ; \
You can’t perform that action at this time.
0 commit comments