| Index: scripts/make_mac_assembly.sh
|
| diff --git a/scripts/make_mac_assembly.sh b/scripts/make_mac_assembly.sh
|
| old mode 100644
|
| new mode 100755
|
| index 8ca593e7008ee2eb04a5b0d342e9924bcde457b5..00e3daac1471d141824b8f17cfb99e2a697417aa
|
| --- a/scripts/make_mac_assembly.sh
|
| +++ b/scripts/make_mac_assembly.sh
|
| @@ -7,6 +7,8 @@ ICUROOT="$(dirname $0)/.."
|
| LINUX_SOURCE="${ICUROOT}/linux/icudtl_dat.S"
|
| MAC_SOURCE="${ICUROOT}/mac/icudtl_dat.S"
|
|
|
| +echo "Generating ${MAC_SOURCE} from ${LINUX_SOURCE}"
|
| +
|
| # Linux uses 'icudt${MAJOR VERSION}_dat' while Mac has "_" prepended to it.
|
| ICUDATA_SYMBOL="_$(head -1 ${LINUX_SOURCE} | cut -d ' ' -f 2)"
|
|
|
| @@ -23,3 +25,4 @@ PREAMBLE
|
|
|
| PREAMBLE_LENGTH=$(($(egrep -n '^icudt' ${LINUX_SOURCE} | cut -d : -f 1) + 1))
|
| tail -n +${PREAMBLE_LENGTH} ${LINUX_SOURCE} >> ${MAC_SOURCE}
|
| +echo "Done with generating ${MAC_SOURCE}"
|
|
|