mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-08 12:54:25 +00:00
11 lines
238 B
Plaintext
11 lines
238 B
Plaintext
|
#!/bin/sh
|
||
|
# lazy way to build linux memcard manager
|
||
|
mv ../../SConstruct ../../dolphin_SConstruct
|
||
|
cp SConstruct ../../SConstruct
|
||
|
cp SConscript ../../SConscript
|
||
|
cd ../../
|
||
|
scons
|
||
|
rm SConstruct
|
||
|
rm SConscript
|
||
|
mv dolphin_SConstruct SConstruct
|