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 e2fd280 commit 7af9925
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 @@ -743,9 +743,9 @@ fi
configure_cmd="${configure_cmd} ${OPT_ARGS}"

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

echo "Finished compiling at `date`"

1 comment on commit 7af9925

@HathewayWill
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jprestop

ignore my comments on issue #2775

I found the this change log.

Please sign in to comment.