From 98ebe8b7ccee4f21508cc1d95e76b96d1ef0f0e9 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 1 Mar 2010 18:17:14 -0500 Subject: [PATCH] Build - with_lua - Added code to dynamically run different configure scripts depending on the OS. --- with_lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/with_lua b/with_lua index c4ee5cae2..88f6806b4 100755 --- a/with_lua +++ b/with_lua @@ -1,8 +1,12 @@ # This is currently what is required to build with Lua. -# OSX: -# Command: -./configure --with-lua +OS=`uname` + +case $OS in + Darwin) + ./configure --with-lua + ;; +esac # Cygwin 1.5: # Command: