Office-Mini-2:~ myth24$ svn diff .osx-packager/src/myth-svn/packaging/
Index: .osx-packager/src/myth-svn/packaging/OSX/build/osx-packager.pl
===================================================================
--- .osx-packager/src/myth-svn/packaging/OSX/build/osx-packager.pl	(revision 27420)
+++ .osx-packager/src/myth-svn/packaging/OSX/build/osx-packager.pl	(working copy)
@@ -35,6 +35,7 @@
 #
 our $backend = 0;
 our $jobtools = 0;
+our $feplus = 0;
 
 # Parallel makes?
 #
@@ -50,7 +51,8 @@
 our @components = ( 'myththemes', 'mythplugins' );
 
 # The OS X programs that we are likely to be interested in.
-our @targets   = ( 'MythFrontend', 'MythAVTest',  'MythWelcome' );
+our @targets   = ( 'MythFrontend' );
+our @targetTW  = ( 'MythAVTest',  'MythWelcome');   # WCT-make Test & Welcome options
 our @targetsJT = ( 'MythCommFlag', 'MythJobQueue');
 our @targetsBE = ( 'MythBackend',  'MythFillDatabase', 'MythTV-Setup');
 
@@ -288,6 +290,7 @@
    -nohead          don't update to HEAD revision of MythTV before building
    -usehdimage      perform build inside of a case-sensitive disk image
    -leavehdimage    leave disk image mounted on exit
+   -enable-feplus   build MythAVTest and MythWelcome as well as the frontend
    -enable-backend  build the backend server as well as the frontend
    -enable-jobtools build commflag/jobqueue  as well as the frontend
    -profile         build with compile-type=profile
@@ -360,6 +363,7 @@
                          'nohead',
                          'usehdimage',
                          'leavehdimage',
+                         'enable-feplus',
                          'enable-backend',
                          'enable-jobtools',
                          'profile',
@@ -382,6 +386,9 @@
 if ( $OPT{'enable-jobtools'} )
 {   $jobtools = 1  }
 
+if ( $OPT{'enable-feplus'} )	# add MythAVTest and MythWelcome
+{   $feplus = 1  }
+
 # Get version string sorted out
 if ( $OPT{'svntag'} && !$OPT{'version'} )
 {
@@ -1052,6 +1059,9 @@
 if ( $jobtools )
 {   push @targets, @targetsJT   }
 
+if ( $feplus )
+{   push @targets, @targetTW   }
+
 if ( $backend )
 {   push @targets, @targetsBE   }
