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

github.com/torch/cunn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/rocks
diff options
context:
space:
mode:
authorsoumith <soumith@fb.com>2015-04-10 03:53:21 +0300
committersoumith <soumith@fb.com>2015-04-10 03:53:21 +0300
commit2716e2058b0368b8a5bcc80b75df4193f4259d4f (patch)
treed06a211cbf6a7de13f0f7e5be0505d299490f166 /rocks
parent9282b1f196b483b72e463990e46bf42a905ab329 (diff)
fixing rock so that cunn doesn't get compiled twice
Diffstat (limited to 'rocks')
-rw-r--r--rocks/cunn-scm-1.rockspec4
1 files changed, 2 insertions, 2 deletions
diff --git a/rocks/cunn-scm-1.rockspec b/rocks/cunn-scm-1.rockspec
index c742438..503ca2f 100644
--- a/rocks/cunn-scm-1.rockspec
+++ b/rocks/cunn-scm-1.rockspec
@@ -22,7 +22,7 @@ dependencies = {
build = {
type = "command",
build_command = [[
-cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)
+cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE) install
]],
- install_command = "cd build && $(MAKE) install"
+ install_command = "cd build"
}