mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 18:49:11 +01: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
|