From b05e54b148d1d174858d4e49f989e54a1339efe0 Mon Sep 17 00:00:00 2001
From: triton <ripzonetriton@gmail.com>
Date: Tue, 31 Dec 2013 12:31:04 +0000
Subject: [PATCH] Updated the LLVM build paths to the latest version.

---
 build/LLVM.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build/LLVM.lua b/build/LLVM.lua
index 2c242795..5d10ae3b 100644
--- a/build/LLVM.lua
+++ b/build/LLVM.lua
@@ -18,10 +18,10 @@ function SetupLLVMLibs()
   }
   
   configuration { "Debug", "vs*" }
-    libdirs { path.join(LLVMBuildDir, "lib/Debug") }
+    libdirs { path.join(LLVMBuildDir, "Debug/lib") }
 
   configuration { "Release", "vs*" }
-    libdirs { path.join(LLVMBuildDir, "lib/RelWithDebInfo") }
+    libdirs { path.join(LLVMBuildDir, "RelWithDebInfo/lib") }
 
   configuration "not vs*"
     buildoptions { "-fpermissive" }