From 4d60380325f6bda89309dbe415976fa53de6bcde Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 9 Sep 2015 12:08:09 +0200 Subject: [PATCH] kivy Makefile: don't move, copy --- gui/kivy/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/kivy/Makefile b/gui/kivy/Makefile index 5634a70c..c7048edc 100644 --- a/gui/kivy/Makefile +++ b/gui/kivy/Makefile @@ -8,8 +8,8 @@ theming: apk: # running pre build setup @cp tools/buildozer.spec ../../buildozer.spec - # rename electrum to main.py - @mv ../../electrum ../../main.py + # copy electrum to main.py + @cp ../../electrum ../../main.py @-if [ ! -d "../../.buildozer" ];then \ cd ../..; buildozer android debug;\ cp -f gui/kivy/tools/blacklist.txt .buildozer/android/platform/python-for-android/src/blacklist.txt;\ @@ -20,6 +20,6 @@ apk: clean: # Cleaning up # rename main.py to electrum - @-mv ../../main.py ../../electrum + @-rm ../../main.py # remove buildozer.spec @-rm ../../buildozer.spec