From 489138ce3d98b3a501861edd3c132a94fd841ad6 Mon Sep 17 00:00:00 2001 From: historic_bruno Date: Mon, 20 Feb 2012 23:58:59 +0000 Subject: [PATCH] Fixes spurious test of "unix" in Premake (prevented X11 from linking properly) This was SVN commit r11109. --- build/premake/premake4.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake/premake4.lua b/build/premake/premake4.lua index 00b7f36524..9c40de0a9e 100644 --- a/build/premake/premake4.lua +++ b/build/premake/premake4.lua @@ -707,7 +707,7 @@ used_extern_libs = { "valgrind", } -if os.is("unix") and not _OPTIONS["android"] then +if not os.is("windows") and not _OPTIONS["android"] then table.insert(used_extern_libs, "x11") end