build.sh 234 B

1234567891011121314151617
  1. source pkg-config.sh
  2. path=(
  3. gmp/6.2.1
  4. mpfr/4.1.1
  5. mpc/1.2.1
  6. flex/2.6.4
  7. )
  8. current_path=$(pwd)
  9. for i in ${path[@]}; do
  10. echo "Building $i"
  11. cd $i
  12. ./build.sh || exit 1
  13. cd $current_path
  14. done
  15. cd $current_path