Skip to content

Commit

Permalink
Removing ${MAKE_ARGS} in some locations
Browse files Browse the repository at this point in the history
Removing ${MAKE_ARGS} from "make install" and "make test" for MET.  Removing "met" prefix from met.configure.log because we really need config.log for any detail.  It is confusing to have met.configure.log when that does not contain useful information.
  • Loading branch information
jprestop authored Jan 17, 2024
1 parent 53338a0 commit 51227b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/scripts/installation/compile_MET_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -917,9 +917,9 @@ fi
configure_cmd="${configure_cmd} ${OPT_ARGS}"

echo "cd `pwd`"
run_cmd "${configure_cmd} > $(pwd)/met.configure.log 2>&1"
run_cmd "${configure_cmd} > $(pwd)/configure.log 2>&1"
run_cmd "make ${MAKE_ARGS} > $(pwd)/met.make.log 2>&1"
run_cmd "make ${MAKE_ARGS} install > $(pwd)/met.make_install.log 2>&1"
run_cmd "make ${MAKE_ARGS} test > $(pwd)/met.make_test.log 2>&1"
run_cmd "make install > $(pwd)/met.make_install.log 2>&1"
run_cmd "make test > $(pwd)/met.make_test.log 2>&1"

echo "Finished compiling at `date`"

0 comments on commit 51227b9

Please sign in to comment.