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

github.com/torch/sys.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2016-04-16 01:27:34 +0300
committerSoumith Chintala <soumith@gmail.com>2016-04-16 01:27:34 +0300
commit8d2b8facd22e55d66ac71cb778f451694e7611fa (patch)
tree64dee9c7cfd47e7479be95759fdd19d0df796961
parenteea341faaa7578936adae14e2a69387230de6194 (diff)
parentac885e6ef0ea556703e592c4f9b913599edef8a7 (diff)
Merge pull request #7 from borisfom/master
Removing assumption of Lua install directory
-rw-r--r--sys-1.1-0.rockspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-1.1-0.rockspec b/sys-1.1-0.rockspec
index d38e22f..c362988 100644
--- a/sys-1.1-0.rockspec
+++ b/sys-1.1-0.rockspec
@@ -20,6 +20,6 @@ dependencies = {
build = {
type = "command",
- build_command = [[cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)]],
+ build_command = [[cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)]],
install_command = "cd build && $(MAKE) install"
}