Update of /cvsroot/libfunutil/libfunutil/toc/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv12756
Added Files:
buildtool.sh
Log Message:
egg
--- NEW FILE: buildtool.sh ---
# toc_run_description = looking for buildtool...
# toc_begin_help =
# Looks for buildtool and exports:
# configure_with_buildtool to 1 or
# BUILDTOOL_BIN: path to build tool
#
# buildtool can be found at http://buildtool.sourceforge.net/
# = toc_end_help
varname=configure_with_buildtool
bin=${configure_with_buildtool}
val=0
ret=1
if toc_find_failok buildtool "$bin:$PATH"; then
bin=${TOC_FIND_RESULT}
val=1
ret=0
fi
toc_add_make BUILDTOOL_BIN=${bin}
toc_add_make $varname=${val}
return $ret
|