The latest osx-packager.pl script appears to be broken, if you don't specify a svnrev, it doesn't append the /trunk to the http:// svn.mythtv.org/svn string. I've attached a diff below.. It also changes the path of svn, so that can be ignored..

My Diff follows:

Index: contrib/osx-packager.pl
===================================================================
--- contrib/osx-packager.pl     (revision 7936)
+++ contrib/osx-packager.pl     (working copy)
@@ -554,12 +554,16 @@
   push @svnrevision, $OPT{'svnrev'};
}
+else
+{
+ $svnrepository .= 'trunk/';
+}
# Build MythTV and any plugins
foreach my $comp (@comps)
{
   my $compdir = "$svndir/$comp/" ;
-  my $svn = '/sw/bin/svn';
-     $svn = '/Volumes/Users/nigel/bin/svn';
+  my $svn = '/usr/local/bin/svn';
+#     $svn = '/Volumes/Users/nigel/bin/svn';
   if ($comp eq 'mythtv')
   {

Attachment: osx-packager.pl.diff
Description: Binary data

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to