aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-09-04 05:07:30 +1000
committeronefang2021-09-04 05:07:30 +1000
commite5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b (patch)
treec46725438a4247ff79d0b51572eba882abc93f15
parentComment++ (diff)
downloadopensim-SC-e5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b.zip
opensim-SC-e5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b.tar.gz
opensim-SC-e5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b.tar.bz2
opensim-SC-e5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b.tar.xz
Filter out excess prebuild output.
Diffstat (limited to '')
-rw-r--r--src/sledjchisl/sledjchisl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 1ed62ab..81268c3 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -8663,7 +8663,7 @@ Create the /opt/opensim-SC directory structure.
8663#rm -rf addon-modules/Gloebit/GloebitMoneyModule 8663#rm -rf addon-modules/Gloebit/GloebitMoneyModule
8664#cp -r git-sub-modules/opensim-moneymodule-gloebit/addon-modules/Gloebit/GloebitMoneyModule addon-modules/Gloebit/ 8664#cp -r git-sub-modules/opensim-moneymodule-gloebit/addon-modules/Gloebit/GloebitMoneyModule addon-modules/Gloebit/
8665*/ 8665*/
8666 if (shellMeFail("cd %s; ./runprebuild.sh autoclean", t)) E("Failed to autoclean!"); 8666 if (shellMeFail("cd %s; ./runprebuild.sh autoclean | grep -v '...Cleaning project:'", t)) E("Failed to autoclean!");
8667 // Clean the stuff autoclean forgets to clean. I feel so dirty. 8667 // Clean the stuff autoclean forgets to clean. I feel so dirty.
8668 if (shellMeFail("cd %s; find -name obj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); 8668 if (shellMeFail("cd %s; find -name obj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!");
8669 if (shellMeFail("cd %s; find -name *.csproj -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); 8669 if (shellMeFail("cd %s; find -name *.csproj -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!");
@@ -8690,7 +8690,7 @@ else
8690fi 8690fi
8691*/ 8691*/
8692 // Use this for Mono 5 and later. 8692 // Use this for Mono 5 and later.
8693 if (shellMeFail("cd %s; ./runprebuild.sh vs2015", t)) C("Failed to prebuild!"); 8693 if (shellMeFail("cd %s; ./runprebuild.sh vs2015 | grep -v '...Creating project:'", t)) C("Failed to prebuild!");
8694 // msbuild has a /maxcpucount option, but it takes longer to count the CPUs than it takes to compile, so ends up taking MORE time. Pffft. 8694 // msbuild has a /maxcpucount option, but it takes longer to count the CPUs than it takes to compile, so ends up taking MORE time. Pffft.
8695 if (shellMeFail("cd %s; msbuild /p:Configuration=Debug /verbosity:minimal", t)) C("Failed to msbuild!"); 8695 if (shellMeFail("cd %s; msbuild /p:Configuration=Debug /verbosity:minimal", t)) C("Failed to msbuild!");
8696// if (shellMeFail("cd %s; msbuild /p:Configuration=Release /verbosity:minimal", t)) C("Failed to msbuild!"); 8696// if (shellMeFail("cd %s; msbuild /p:Configuration=Release /verbosity:minimal", t)) C("Failed to msbuild!");