mirror of
https://github.com/SeanOMik/eBookReaderSwitch.git
synced 2025-02-16 21:50:09 +00:00
8 lines
305 B
Bash
8 lines
305 B
Bash
# Simple script to revert the changes made by destatic.sh
|
|
|
|
# Allow for the fact that mujs might not be present
|
|
MUJS_SRC=
|
|
test -d thirdparty/mujs && MUJS_SRC=thirdparty/mujs
|
|
|
|
# Convert it all back
|
|
sed -i 's!/\*static \*/!static !' $(find source platform/android/viewer platform/java $MUJS_SRC -name '*.c')
|