[Mono-bugs] [Bug 69868][Min] New - mono-build.sh will not run

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 23 Nov 2004 22:52:59 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by ximian.com@nik-martin.com.

http://bugzilla.ximian.com/show_bug.cgi?id=69868

--- shadow/69868	2004-11-23 22:52:59.000000000 -0500
+++ shadow/69868.tmp.17650	2004-11-23 22:52:59.000000000 -0500
@@ -0,0 +1,46 @@
+Bug#: 69868
+Product: Mono: Tools
+Version: unspecified
+OS: 
+OS Details: Slackware 10.0 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: tools
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ximian.com@nik-martin.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mono-build.sh will not run
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem: The path to the SVN argument at line 222 is missing
+the $TRUNK variable.  Also, subversion is not listed as a pre-requisite to
+this script.
+
+
+Steps to reproduce the problem:
+1. run mono-build.sh
+2. 
+3. 
+
+Actual Results:
+
+Script fails when it tries to checkout mono from
+svn://svn.myrealbox.com/source/trunk
+
+Expected Results:A fresh, clean mono build
+
+How often does this happen? every time I run the script
+
+
+Additional Information: Patch is below
+
+222c222
+< (cd $here && svn checkout mono) || exit -1
+---
+> (cd $here && svn checkout $TRUNK/mono) || exit -1