aboutsummaryrefslogtreecommitdiff
path: root/plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-06-07 14:58:31 -0700
committerJakob Odersky <jakob@odersky.com>2016-06-07 15:34:23 -0700
commite9ae890252fb1924dd4bbe102336181108462858 (patch)
tree55cbd9090ee73a709850fcd5cfc96c5a03f506d0 /plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala
parente83013bc805f9ee3f9c9edfa838a41ba51fe8348 (diff)
downloadsbt-jni-e9ae890252fb1924dd4bbe102336181108462858.tar.gz
sbt-jni-e9ae890252fb1924dd4bbe102336181108462858.tar.bz2
sbt-jni-e9ae890252fb1924dd4bbe102336181108462858.zip
Update paramaters passed to CMake from sbt
Diffstat (limited to 'plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala')
-rw-r--r--plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala b/plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala
index 7bfedae..27550a8 100644
--- a/plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala
+++ b/plugin/src/main/scala/ch/jodersky/sbt/jni/build/ConfigureMakeInstall.scala
@@ -19,7 +19,7 @@ trait ConfigureMakeInstall { self: BuildTool =>
def configure(targetDirectory: File): ProcessBuilder
- def make(): ProcessBuilder = Process("make", buildDirectory)
+ def make(): ProcessBuilder = Process("make VERBOSE=1", buildDirectory)
def install(): ProcessBuilder = Process("make install", buildDirectory)