tkivy Makefile: don't move, copy - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 4d60380325f6bda89309dbe415976fa53de6bcde
DIR parent 886192aba7f075cd01278604342c1cb26540972a
HTML Author: ThomasV <thomasv@electrum.org>
Date: Wed, 9 Sep 2015 12:08:09 +0200
kivy Makefile: don't move, copy
Diffstat:
M gui/kivy/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/gui/kivy/Makefile b/gui/kivy/Makefile
t@@ -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;\
t@@ -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