diff options
author | onefang | 2021-09-02 17:03:59 +1000 |
---|---|---|
committer | onefang | 2021-09-02 17:03:59 +1000 |
commit | 905b9c1889df68fec7dff7e4d8004f0cb58b9fec (patch) | |
tree | c7da2f3061af916911195d4a00de46df49e27bff /src | |
parent | Clean out excess pdb file. (diff) | |
download | opensim-SC-905b9c1889df68fec7dff7e4d8004f0cb58b9fec.zip opensim-SC-905b9c1889df68fec7dff7e4d8004f0cb58b9fec.tar.gz opensim-SC-905b9c1889df68fec7dff7e4d8004f0cb58b9fec.tar.bz2 opensim-SC-905b9c1889df68fec7dff7e4d8004f0cb58b9fec.tar.xz |
Properly clean OpenSim before beuilding it.
Diffstat (limited to 'src')
-rw-r--r-- | src/sledjchisl/sledjchisl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index 23f47a1..8d5ddf0 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c | |||
@@ -2479,9 +2479,9 @@ gitARend: | |||
2479 | if (shellMeFail("cd %s; ./runprebuild.sh autoclean", t)) E("Failed to autoclean!"); | 2479 | if (shellMeFail("cd %s; ./runprebuild.sh autoclean", t)) E("Failed to autoclean!"); |
2480 | // Clean the stuff autoclean forgets to clean. I feel so dirty. | 2480 | // Clean the stuff autoclean forgets to clean. I feel so dirty. |
2481 | if (shellMeFail("cd %s; find -name obj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); | 2481 | if (shellMeFail("cd %s; find -name obj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); |
2482 | if (shellMeFail("cd %s; find -name *.csproj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); | 2482 | if (shellMeFail("cd %s; find -name *.csproj -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); |
2483 | if (shellMeFail("cd %s; find -name *.csproj.* -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); | 2483 | if (shellMeFail("cd %s; find -name *.csproj.* -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); |
2484 | if (shellMeFail("cd %s; find -name *.pdb -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); | 2484 | if (shellMeFail("cd %s; find -name *.pdb -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); |
2485 | if (shellMeFail("cd %s; rm -fr bin/ScriptEngines", t)) E("Failed to rm ScriptEngines!"); | 2485 | if (shellMeFail("cd %s; rm -fr bin/ScriptEngines", t)) E("Failed to rm ScriptEngines!"); |
2486 | // Clean the stuff the tests created. | 2486 | // Clean the stuff the tests created. |
2487 | if (shellMeFail("cd %s; rm Test*.txt", t)) E("Failed to Test results!"); | 2487 | if (shellMeFail("cd %s; rm Test*.txt", t)) E("Failed to Test results!"); |