From cf5e2524c2a7939cea60d6c0890cf1622e444cee Mon Sep 17 00:00:00 2001 From: janwas Date: Mon, 24 May 2004 00:08:38 +0000 Subject: [PATCH] output directory now correct This was SVN commit r257. --- source/workspaces/premake/premake.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/workspaces/premake/premake.lua b/source/workspaces/premake/premake.lua index c24ee72c20..e72e24eb4f 100755 --- a/source/workspaces/premake/premake.lua +++ b/source/workspaces/premake/premake.lua @@ -2,8 +2,8 @@ dofile("functions.lua") -- Set up the Project project.name = "prometheus" -project.bindir = "../../binaries/system" -project.libdir = "../../binaries/system" +project.bindir = "../../../binaries/system" +project.libdir = "../../../binaries/system" -- Start the package part package = newpackage()