tools: check-fpc-dependencies honors PP environment variable to select a fpc compiler

git-svn-id: trunk@11744 -
This commit is contained in:
vincents 2007-08-05 21:40:11 +00:00
parent a362b60829
commit ae1a727d3d

View File

@ -17,7 +17,11 @@ echo "{\$linklib gpm}" >> $TestPas
echo "{\$linklib ncurses}" >> $TestPas
echo "begin end." >> $TestPas
fpc $TestPas
if [ "x$PP" = "x" ]; then
fpc $TestPas
else
$PP $TestPas
fi
# end.