lazarus/tools/compile_all.sh
mattias 9032caa4fd UTF-8: added ExpandFilenameUTF8
git-svn-id: trunk@16272 -
2008-08-27 11:25:01 +00:00

13 lines
168 B
Bash
Executable File

#!/usr/bin/env bash
set -e
LazBuild=$1
if [ ! -x "$LazBuild" ]; then
echo Usage: $0 ./lazbuild
exit -1
fi
set -x
find . -name '*.lpk' -exec $LazBuild {} \+
#end.