Kaydet (Commit) 02edfcad authored tarafından Eike Rathke's avatar Eike Rathke

check if $CALLXSLTPROC is defined and bail out if not

Change-Id: I2cbaffc35699942318b24492d02cf06397740009
üst 83b729eb
......@@ -14,6 +14,12 @@
#
# All a bit hacky, but it should work
if [ -z "$CALLXSLTPROC" ]; then
echo "$0: \$CALLXSLTPROC not defined!"
echo "$0: Apparently we are not called from the build process, bailing out."
exit 1
fi
tempfoo=`basename $0`
XSL=`mktemp /tmp/${tempfoo}.XXXXXX`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment