[mythtv-commits] Ticket #1284: osx-packager.pl can't find mythtv.pro myththemes.pro and mythplugins.pro

MythTV mythtv at cvs.mythtv.org
Tue Feb 14 22:09:33 UTC 2006


#1284: osx-packager.pl can't find mythtv.pro myththemes.pro and mythplugins.pro
--------------------------------------+-------------------------------------
 Reporter:  dsnider at thesniderpad.com  |       Owner:  nigel  
     Type:  patch                     |      Status:  new    
 Priority:  major                     |   Milestone:  unknown
Component:  mythtv                    |     Version:  head   
 Severity:  medium                    |  
--------------------------------------+-------------------------------------
 The code in the osxpackager script doesn't look at the full path for the
 $comp.pro, so it does not find the files, and doesn't build anything.
 patch is attached.
 {{{

 $ cat /tmp/osx-packager.pl.patch
 Index: contrib/osx-packager.pl
 ===================================================================
 --- contrib/osx-packager.pl     (revision 8954)
 +++ contrib/osx-packager.pl     (working copy)
 @@ -704,7 +704,7 @@
  {
    my $compdir = "$svndir/$comp/" ;

 -  if ( ! -e "$comp.pro" )
 +  if ( ! -e "$compdir/$comp.pro" )
    {
      &Complain("$compdir/$comp.pro does not exist.",
                'You must be building really old source?');

 }}}

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/1284>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list