code-saturne/code_saturne

Bug: error in file sbin\bootstrap

paspro opened this issue · 1 comments

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

Fixed by commit 52c0a58.