@retropieuser555 said in MKDD Tint Issue RPI5:
@gvx64 said in MKDD Tint Issue RPI5:
Instructions for Building from Source
cd /home/pi
sudo mkdir ./dolphin-rpi/
sudo git clone https://github.com/gvx64/dolphin-rpi
cd ./dolphin-rpi
sudo git submodule update --init --recursive
I wouldn't use sudo to make the dolphin-rpi directory, you can just git clone straight away. Otherwise it'll mess up all the permissions. Or later in your code the user probably won't be allowed to make the build directory
cd ~
git clone https://github.com/gvx64/dolphin-rpi
cd ./dolphin-rpi
git submodule update --init --recursive
Thanks, I agree with this. I will modify Post 42 to remove the unnecessary directory creation from the instruction set when I have some time.