(Linux x86_64) Set up default buildbot updater URL

This commit is contained in:
twinaphex 2015-03-06 02:47:00 +01:00
parent aece30f6bc
commit 64dd1562a6

View File

@ -667,6 +667,12 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/win-x8
#elif defined(__i386__) || defined(__i486__) || defined(__i686__)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/win-x86/latest/";
#endif
#elif defined(__linux__)
#if defined(__x86_64__)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/linux/x86_64/latest/";
#else
static char buildbot_server_url[] = "";
#endif
#else
static char buildbot_server_url[] = "";
#endif