A small bug in scripts/build.sh (has been there in previous versions):
# Actually do something!
for pkg in `cat packages/platform.packages`; do
if is_pkg_installed "${pkg}"; then
true
else
echo '**************************************************'
echo "Building ${PKG}"
build_pkg "${pkg}"
fi
done
${PKG} there should be corrected to ${pkg}
${PKG} refers to the package built in the previous iteration. (See function
build_pkg. ${PKG} is erroneously made a global variable.)
_______________________________________________
Haskell-platform mailing list
[email protected]
http://projects.haskell.org/cgi-bin/mailman/listinfo/haskell-platform