summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 06c06a5d..c004b598 100644
--- a/cscript
+++ b/cscript
@@ -3,6 +3,6 @@ def build(dep_prefix, install_prefix, target, static, parallel):
configure = './configure --prefix=%s' % install_prefix
if static:
configure += ' --enable-static'
- command(cmd)
+ command(configure)
command('make -j%d' % parallel)
command('make install')