aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/releng/dobuild.sh
diff options
context:
space:
mode:
authorAdam Frisby2007-06-19 04:04:28 +0000
committerAdam Frisby2007-06-19 04:04:28 +0000
commitb34d1c210e6cc599d0eb74c653dafd6bbb362770 (patch)
treea847917ad05728f1be62fc8e7b78e81dc76ef674 /releng/dobuild.sh
parent*Added some missing files from last commit (diff)
downloadopensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.zip
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.gz
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.bz2
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.xz
* Cleaning up unused zircon branch.
* Removed releng from sugilite.
Diffstat (limited to '')
-rw-r--r--releng/dobuild.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/releng/dobuild.sh b/releng/dobuild.sh
deleted file mode 100644
index 0fbb979..0000000
--- a/releng/dobuild.sh
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2
3# this script does a guaranteed clean build from SVN using a URL specified on the command line
4
5rm -rf build/
6mkdir build
7
8printf "Getting fresh source tree from SVN..."
9svn checkout $1 build
10
11printf "Updating templates..."
12./parsetmpl.sh templates/VersionInfo.cs.tmpl >build/OpenSim.RegionServer/VersionInfo.cs
13
14printf "Running prebuild..."
15cd build
16mono bin/Prebuild.exe /target nant
17
18printf "Doing the build..."
19nant
20