From 7af9925066e36d2e1268698bd1fee0405b780ff4 Mon Sep 17 00:00:00 2001 From: Julie Prestopnik Date: Wed, 17 Jan 2024 13:42:17 -0700 Subject: [PATCH] Removing ${MAKE_ARGS} in some locations 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. --- internal/scripts/installation/compile_MET_all.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/scripts/installation/compile_MET_all.sh b/internal/scripts/installation/compile_MET_all.sh index 2adf80a45f..ed9fc4de37 100755 --- a/internal/scripts/installation/compile_MET_all.sh +++ b/internal/scripts/installation/compile_MET_all.sh @@ -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`"