Merge pull request #475 from majestrate/master

don't die when running make CROSS=ON
pull/480/head
Jeff 5 years ago committed by GitHub
commit 26fd6cb846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -177,7 +177,7 @@ testnet:
$(TEST_EXE): debug
test: $(TEST_EXE)
test x$(CROSS) = xOFF && $(TEST_EXE)
test x$(CROSS) = xOFF && $(TEST_EXE) || test x$(CROSS) = xON
android-gradle-prepare:
rm -f $(ANDROID_PROPS)
@ -261,7 +261,7 @@ debian: debian-configure
cp $(EXE) lokinet
debian-test:
test x$(CROSS) = xOFF && $(TEST_EXE) || true
test x$(CROSS) = xOFF && $(TEST_EXE) || test x$(CROSS) = xON
install:
$(MAKE) -C '$(BUILD_ROOT)' install

Loading…
Cancel
Save