Skip to content

Commit 406b08c

Browse files
committed
Fix mythwelcome in FE-only builds, add ccache for speedup.
A non-backend build was not building mythwelcome, so when this script tried to package MythWelcome.app, it barfed. I usually --enable-backend, so didn't notice the fault. This has been broken for ages. A slightly different fix to Stuart's [e4c981f].
1 parent b38f237 commit 406b08c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

OSX/build/osx-packager.pl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
our %depend_order = (
6262
'mythtv'
6363
=> [
64+
'ccache',
6465
'dvdcss',
6566
'freetype',
6667
'lame',
@@ -265,6 +266,11 @@
265266
'url' => 'http://www.tortall.net/projects/yasm/releases/yasm-1.1.0.tar.gz',
266267
},
267268

269+
'ccache' =>
270+
{
271+
'url' => 'http://samba.org/ftp/ccache/ccache-3.1.4.tar.bz2',
272+
},
273+
268274
);
269275

270276

@@ -1000,7 +1006,8 @@ END
10001006
if ( $comp eq 'mythtv' )
10011007
{
10021008
# Remove/add Nigel's frontend building speedup hack
1003-
&DoSpeedupHacks('programs/programs.pro', 'mythfrontend mythavtest');
1009+
&DoSpeedupHacks('programs/programs.pro',
1010+
'mythfrontend mythavtest mythwelcome');
10041011
}
10051012

10061013
&Verbose("Making $comp");

0 commit comments

Comments
 (0)