mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:58:02 +02:00
15 lines
212 B
Bash
Executable File
15 lines
212 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 {} \+
|
|
|
|
find . -name '*.lpi' -exec $LazBuild {} \+
|
|
|
|
#end.
|