1
0
Fork 0
forked from len0rd/rockbox

Copy SDL.dll from the SDL dir which was used, rather than relying on PATH.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23374 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonas Häggqvist 2009-10-27 23:24:04 +00:00
parent 06027214c8
commit 35ee2fdd45

View file

@ -117,6 +117,7 @@ sub runone {
$cmd = "find \\( -name 'rockboxui*' -o -iname '*dll' -o -name '*.rock' -o -name '*.codec' \\) -exec $striptool '{}' ';'";
print("$cmd\n") if ($verbose);
`$cmd`;
close(MAKE);
}
chdir "..";
@ -135,9 +136,15 @@ sub runone {
print "Zip up the sim and associated files\n" if ($verbose);
mkpath(dirname($newo));
system("mv build-$dir $newo");
if (-f "$newo/rockboxui.exe") {
if ($cross) {
print "Find and copy SDL.dll\n" if ($verbose);
`cp \`dirname \\\`which sdl-config\\\`\`/SDL.dll ./$newo/`;
open(MAKE, "$newo/Makefile");
my $GCCOPTS=(grep(/^export GCCOPTS=/, <MAKE>))[0];
chomp($GCCOPTS);
(my $sdldll = $GCCOPTS) =~ s/^export GCCOPTS=.*-I([^ ]+)\/include\/SDL.*$/$1\/bin\/SDL.dll/;
print "Found $sdldll\n" if ($verbose);
`cp $sdldll ./$newo/`;
close(MAKE);
}
my $toplevel = getcwd();
chdir(dirname($newo));