From 2a7283fc6b1f2aba99b69ecb8b5837cbadc0ed6c Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 18 Feb 2009 01:58:16 -0600 Subject: [PATCH] *Sigh* Fixed Linux build for real. --- support/buildbot/startbuild.pl | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/support/buildbot/startbuild.pl b/support/buildbot/startbuild.pl index ba9e1b3..2e16505 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -51,19 +51,27 @@ sub Build { if ($platform ne "windows") { - if ($suffix eq 'full') - { - $binary .= '_i486.so'; - } - else - { - $binary .= '.so'; - } + return; } + + if ($suffix eq 'full') + { + $binary .= '_i486.so'; + } + else + { + $binary .= '.so'; + } + BuildLinux($srcdir, $objdir, $binary); } - elsif ($platform ne "linux") + else { + if ($platform ne "linux") + { + return; + } + $binary .= '.dll'; BuildWindows($srcdir, $vcproj, $objdir, $binary); }