[Slim-Checkins] r33845 - in /7.7/trunk: buildme.pl server/Bin/sparc-linux/ server/Bin/sparc-unknown-linux-gnu/
[email protected] Fri, 17 Feb 2012 08:22:25 -0000
| Newsgroups | gmane.music.equipment.slimdevices.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mherger
Date: Fri Feb 17 00:22:25 2012
New Revision: 33845
URL: http://svn.slimdevices.com/slim?rev=33845&view=rev
Log:
Bug: 17891
Description: fix transcoding
- move custom-convert.conf to the correct folder
- Bin folder needs to be sparc-linux, not sparc-unknown-linux-gnu
Added:
7.7/trunk/server/Bin/sparc-linux/
- copied from r33844, 7.7/trunk/server/Bin/sparc-unknown-linux-gnu/
Removed:
7.7/trunk/server/Bin/sparc-unknown-linux-gnu/
Modified:
7.7/trunk/buildme.pl
Modified: 7.7/trunk/buildme.pl
URL: http://svn.slimdevices.com/slim/7.7/trunk/buildme.pl?rev=33845&r1=33844&r2=33845&view=diff
==============================================================================
--- 7.7/trunk/buildme.pl (original)
+++ 7.7/trunk/buildme.pl Fri Feb 17 00:22:25 2012
@@ -675,7 +675,7 @@
my $dirsToExcludeForReadyNas;
if ($archType eq "i386") {
## Since i386 was selected, lets make sure to remove sparc libs
- print "INFO: \$archType was provided as [$archType], other files...\n";
+ print "INFO: \$archType was provided as [$archType], removing ls other files...\n";
$dirsToExcludeForReadyNas = $dirsToExcludeForReadyNasi386;
$target_arch = 'TARGET_MACHTYPE=i386';
@@ -687,11 +687,11 @@
} elsif ($archType =~ /sparc/) {
## In this case, we remove all the i386 libs
- print "INFO: \$archType was provided as [$archType], removing i386 files...\n";
+ print "INFO: \$archType was provided as [$archType], removing other files...\n";
$dirsToExcludeForReadyNas = $dirsToExcludeForReadyNasSparc;
## use sparc specific custom-convert.conf to disable transcoding to flac
- copy("$sourceDir/platforms/readynas/custom-convert.sparc", "$buildDir/platforms/readynas/custom-convert.conf");
+ copy("$sourceDir/platforms/readynas/custom-convert.sparc", "$buildDir/server/custom-convert.conf");
$target_arch = 'TARGET_MACHTYPE=sparc';
} else {