mirror of
https://github.com/zeldaret/oot
synced 2026-07-11 15:18:59 -04:00
dont use asm-processor, use iconv for reencoding utf8 to eucjp
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
srcfile="${@: -1}"
|
||||
|
||||
tempfile=`mktemp --tmpdir oot_XXXXXXXX.c`
|
||||
|
||||
iconv -f UTF-8 -t EUC-JP -o "$tempfile" "$srcfile"
|
||||
|
||||
"${@:1:$# - 1}" -I `dirname $srcfile` $tempfile
|
||||
Reference in New Issue
Block a user