Fixed Web UI build error caused by rhino changes in F19

rhino-1.7R4-2.fc19.noarch dropped -main flag which made the build fail in rawhide (F19).

We can't use the same command for rhino-1.7R3-6 (F18) and rhino-1.7R4-2 (F19).
This patch adds check if rhino supports '-require' option. If so it calls rhino with it if not it calls rhino with -main option.

https://fedorahosted.org/freeipa/ticket/3501
This commit is contained in:
Petr Vobornik 2013-03-11 14:15:46 +01:00 committed by Martin Kosek
parent be54d1deb5
commit 790a576ad1

View File

@ -23,4 +23,10 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
rhino -main $DIR/uglify-js.js $DIR/ug.js $1 $2 -v
# rhino-1.7R4 doesn't have -main option to enable CommonJS support. It was
# replaced by -require option.
if [ `rhino --help | grep -e -require | wc -l` -gt 0 ] ; then
rhino -require $DIR/uglify-js.js $@
else
rhino -main $DIR/uglify-js.js $DIR/ug.js $@
fi