From 1269ce8a6f42b308102bda451fc96fe3cd8297ce Mon Sep 17 00:00:00 2001 From: Rudolf Kemmler Date: Tue, 4 May 2021 22:53:59 +0200 Subject: [PATCH] modified Makefile.Android.linux in templates/simple_game (#1748) switched out @echo for @printf to make it actually print newlines instead of literal \n's Co-authored-by: Rudolf Kemmler --- templates/simple_game/Makefile.Android.linux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/simple_game/Makefile.Android.linux b/templates/simple_game/Makefile.Android.linux index a358b3bbf..ed9117f29 100644 --- a/templates/simple_game/Makefile.Android.linux +++ b/templates/simple_game/Makefile.Android.linux @@ -201,7 +201,7 @@ copy_project_resources: cp $(APP_ICON_LDPI) $(PROJECT_BUILD_PATH)/res/drawable-ldpi/icon.png cp $(APP_ICON_MDPI) $(PROJECT_BUILD_PATH)/res/drawable-mdpi/icon.png cp $(APP_ICON_HDPI) $(PROJECT_BUILD_PATH)/res/drawable-hdpi/icon.png - @echo "\n\ + @printf "\n\ \n\ \n\ $(APP_LABEL_NAME)\n\ @@ -223,7 +223,7 @@ else nativeloader_sharedlib= endif generate_loader_script: - @echo "package com.$(APP_COMPANY_NAME).$(APP_PRODUCT_NAME);\n\n\ + @printf "package com.$(APP_COMPANY_NAME).$(APP_PRODUCT_NAME);\n\n\ public class NativeLoader extends android.app.NativeActivity {\n\ static {\n\ $(nativeloader_sharedlib);\n\ @@ -236,7 +236,7 @@ generate_loader_script: # TODO @jseb: Replace @drawable/icon with @mipmap/icon? # https://stackoverflow.com/questions/23796414/error-no-resource-found-that-matches-the-given-name-at-icon-with-value-dr generate_android_manifest: - @echo "\n\ + @printf "\n\ \n\