ICU-8931 fix quoting on options

X-SVN-Rev: 31108
This commit is contained in:
Steven R. Loomis 2011-12-13 17:18:01 +00:00
parent 25ccafa02d
commit d396cf1325

View file

@ -200,5 +200,5 @@ case "${FILE}" in
esac
echo "# ${COMP}" -o "${OUT}" "${FILE}" "${XTRA_OPTS}"
( ${COMP} ${SRC_OPTS} -o "${OUT}" "${FILE}" "${XTRA_OPTS}" || (rm -f "${OUT}" ; exit 1) ) && ( echo "# ${INVOKE} ./${OUT}" ; "${SHELL}" -c "${INVOKE} ./${OUT}" "$@")
( ${COMP} ${SRC_OPTS} -o "${OUT}" "${FILE}" ${XTRA_OPTS} || (rm -f "${OUT}" ; exit 1) ) && ( echo "# ${INVOKE} ./${OUT}" ; "${SHELL}" -c "${INVOKE} ./${OUT}" "$@")