diff options
author | Xpol Wan <xpolife@gmail.com> | 2015-04-02 08:47:02 +0800 |
---|---|---|
committer | Xpol Wan <xpolife@gmail.com> | 2015-04-02 08:47:02 +0800 |
commit | cbde5735ce56ad647142d804f92377ded09a695e (patch) | |
tree | b3f4360e974d8bd7e8cf643673cadedd2e1d21f8 | |
parent | 2fcc0cc3e5e809441a32f5e864755e3242813f80 (diff) | |
download | luarocks-cbde5735ce56ad647142d804f92377ded09a695e.tar.gz luarocks-cbde5735ce56ad647142d804f92377ded09a695e.tar.bz2 luarocks-cbde5735ce56ad647142d804f92377ded09a695e.zip |
And also hide the startup logo for RC.
-rw-r--r-- | src/luarocks/build/builtin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/build/builtin.lua b/src/luarocks/build/builtin.lua index 5d15bbf2..00fd09ea 100644 --- a/src/luarocks/build/builtin.lua +++ b/src/luarocks/build/builtin.lua | |||
@@ -138,7 +138,7 @@ function builtin.run(rockspec) | |||
138 | local resname = basename..".res" | 138 | local resname = basename..".res" |
139 | local wrapname = basename..".exe" | 139 | local wrapname = basename..".exe" |
140 | make_rc(fullname, fullbasename..".rc") | 140 | make_rc(fullname, fullbasename..".rc") |
141 | local ok = execute(variables.RC, "-r", "-fo"..resname, rcname) | 141 | local ok = execute(variables.RC, "-nologo", "-r", "-fo"..resname, rcname) |
142 | if not ok then return ok end | 142 | if not ok then return ok end |
143 | ok = execute(variables.CC.." "..variables.CFLAGS, "-c", "-Fo"..object, | 143 | ok = execute(variables.CC.." "..variables.CFLAGS, "-c", "-Fo"..object, |
144 | "-I"..variables.LUA_INCDIR, variables.WRAPPER) | 144 | "-I"..variables.LUA_INCDIR, variables.WRAPPER) |