From a2e65e2bbd6a44bd95e725e0baa4e43cb74aec18 Mon Sep 17 00:00:00 2001 From: Paul Kulchenko Date: Fri, 26 Apr 2013 10:48:35 -0700 Subject: [PATCH] Updated Marmalade interpreter with Quick 1.1 path changes. --- interpreters/marmalade.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interpreters/marmalade.lua b/interpreters/marmalade.lua index 270deb7ba9..7720ceac84 100644 --- a/interpreters/marmalade.lua +++ b/interpreters/marmalade.lua @@ -90,7 +90,8 @@ return { end end - local dll = MergeFullPath(s3e, "../quick/target/quick_prebuilt_d.s86") + local dll = GetFullPathIfExists(s3e, "../quick/target/quick_prebuilt_d.s86") + or MergeFullPath(s3e, ("../quick/target/%s/quick_prebuilt_d.s86"):format(mac and 'osx' or 'win')) local options = table.concat({ ([[--dll="%s"]]):format(dll), (datadir and ([[--data="%s"]]):format(datadir) or ''),