i will install the Wallet from Github on my Pi, but i have after this:
pi@raspberrypi ~ $ cd /home/pi
pi@raspberrypi ~ $ git clone https://github.com/inflationcoin/inflationcoin
pi@raspberrypi ~ $ cd inflationcoin
pi@raspberrypi ~ $ qmake
pi@raspberrypi ~ $ make
make[1]: Entering directory '/home/pi/inflationcoin/src/leveldb'
/bin/sh: 1: ./build_detect_platform: Permission denied
Makefile:18: build_config.mk: No such file or directory
make[1]: *** No rule to make target 'build_config.mk'. Stop.
make[1]: Leaving directory '/home/pi/inflationcoin/src/leveldb'
Makefile:584: recipe for target '/home/pi/inflationcoin/src/leveldb/libleveldb.a' failed
make: *** [/home/pi/inflationcoin/src/leveldb/libleveldb.a] Error 2
Anyone have an idea?
THX
Try changing to directory ...src/leveldb then ...
make libleveldb.a libmemenv.a
You have a step to step how to to change the directory?
regards
/bin/sh: 1: ./build_detect_platform: Permission denied
Makefile:18: build_config.mk: No such file or directory
make: *** No rule to make target 'build_config.mk'. Stop.
Anyone have a solution?
chmod 755 src/leveldb/build_detect_platform – should fix
Thank you there was the solution