Bug: error in file sbin\bootstrap
paspro opened this issue · 1 comments
paspro commented
In file sbin/bootstrap the section:
for f in `ls ./build-aux` ; do
case $f in
*.py | catalyst | *.makefile) ;;
*) rm -rf $d/build-aux/*$ ;;
esac
done
has a mistake with the specification of the $d variable which is not defined.
The correct loop is the following:
for f in `ls ./build-aux` ; do
case $f in
*.py | catalyst | *.makefile) ;;
*) rm -rf ./build-aux/*$ ;;
esac
done
YvanFournier commented
Fixed by commit 52c0a58.