aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2019-07-19 09:42:06 +1000
committeronefang2019-07-19 09:42:06 +1000
commit5192443020db21e59c214180e94a5fce1dae6c37 (patch)
treed99a65153e81690f1e441f57081ac7a8132df355
parentOpenSim changed the way FSAssets directory structure works by default, sort t... (diff)
downloadopensim-SC_OLD-5192443020db21e59c214180e94a5fce1dae6c37.zip
opensim-SC_OLD-5192443020db21e59c214180e94a5fce1dae6c37.tar.gz
opensim-SC_OLD-5192443020db21e59c214180e94a5fce1dae6c37.tar.bz2
opensim-SC_OLD-5192443020db21e59c214180e94a5fce1dae6c37.tar.xz
Fix up prebuild stuff.
-rwxr-xr-xBuildIt.sh5
-rwxr-xr-xrunprebuild.sh15
2 files changed, 11 insertions, 9 deletions
diff --git a/BuildIt.sh b/BuildIt.sh
index 66577a1..aa41594 100755
--- a/BuildIt.sh
+++ b/BuildIt.sh
@@ -10,7 +10,10 @@ find -newer lastBuild -name *.pdb -type f -print | xargs /bin/rm -f
10sleep 1 10sleep 1
11touch lastBuild 11touch lastBuild
12 12
13./runprebuild.sh 13./runprebuild.sh vs2010
14
15# Prebuild converts Microsoft.CSharp.targets to Microsoft.CSHARP.Targets, which case sensitive file systems fail to find.
16find -name *.csproj | xargs sed -i "s@Microsoft.CSHARP.Targets@Microsoft.CSharp.targets@g"
14 17
15# Debian no longer provides nant. 18# Debian no longer provides nant.
16#./nant-color 19#./nant-color
diff --git a/runprebuild.sh b/runprebuild.sh
index 8c18db6..a6d312f 100755
--- a/runprebuild.sh
+++ b/runprebuild.sh
@@ -3,30 +3,29 @@
3case "$1" in 3case "$1" in
4 4
5 'clean') 5 'clean')
6
7 mono bin/Prebuild.exe /clean 6 mono bin/Prebuild.exe /clean
8
9 ;; 7 ;;
10 8
11
12 'autoclean') 9 'autoclean')
13
14 echo y|mono bin/Prebuild.exe /clean 10 echo y|mono bin/Prebuild.exe /clean
11 ;;
15 12
13 'mono')
14 mono bin/Prebuild.exe /target monodev
16 ;; 15 ;;
17 16
17 'nant')
18 mono bin/Prebuild.exe /target nant
19 ;;
18 20
19 'vs2010') 21 'vs2010')
20
21 mono bin/Prebuild.exe /target vs2010 22 mono bin/Prebuild.exe /target vs2010
22
23 ;; 23 ;;
24 24
25 *) 25 *)
26 26 mono bin/Prebuild.exe /target monodev
27 mono bin/Prebuild.exe /target nant 27 mono bin/Prebuild.exe /target nant
28 mono bin/Prebuild.exe /target vs2010 28 mono bin/Prebuild.exe /target vs2010
29
30 ;; 29 ;;
31 30
32esac 31esac