Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2013-11-21 16:14:39 +0400
committerJason Perkins <starkos@industriousone.com>2013-11-21 16:14:39 +0400
commit597955f8e63c4234ea92ec673e2f51b1b32bff4b (patch)
treec839b6137df305ccf3f4d88697f2ce0b262c7355
parent77f3d5249efb979be79c73a2762babab5d6d5d6d (diff)
Update copyright year4.4-beta5
-rwxr-xr-xsrc/host/premake.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/host/premake.c b/src/host/premake.c
index 385dd1b..ac27566 100755
--- a/src/host/premake.c
+++ b/src/host/premake.c
@@ -1,7 +1,7 @@
/**
* \file premake.c
* \brief Program entry point.
- * \author Copyright (c) 2002-2012 Jason Perkins and the Premake project
+ * \author Copyright (c) 2002-2013 Jason Perkins and the Premake project
*/
#include <stdlib.h>
@@ -14,7 +14,7 @@
#define VERSION "HEAD"
-#define COPYRIGHT "Copyright (C) 2002-2012 Jason Perkins and the Premake Project"
+#define COPYRIGHT "Copyright (C) 2002-2013 Jason Perkins and the Premake Project"
#define ERROR_MESSAGE "%s\n"
@@ -88,7 +88,7 @@ int premake_init(lua_State* L)
/* set the OS platform variable */
lua_pushstring(L, PLATFORM_STRING);
lua_setglobal(L, "_OS");
-
+
return OKAY;
}
@@ -100,7 +100,7 @@ int premake_execute(lua_State* L, int argc, const char** argv)
/* Run the built-in Premake scripts */
if (z == OKAY) z = load_builtin_scripts(L);
-
+
return z;
}
@@ -176,14 +176,14 @@ int premake_locate(lua_State* L, const char* argv0)
os_getcwd(L);
lua_pushstring(L, "/");
lua_pushstring(L, argv0);
-
+
if (!path_isabsolute(L)) {
lua_concat(L, 3);
}
else {
lua_pop(L, 1);
}
-
+
path = lua_tostring(L, -1);
}