electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 4d60380325f6bda89309dbe415976fa53de6bcde
parent 886192aba7f075cd01278604342c1cb26540972a
Author: ThomasV <thomasv@electrum.org>
Date:   Wed,  9 Sep 2015 12:08:09 +0200

kivy Makefile: don't move, copy

Diffstat:
Mgui/kivy/Makefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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