summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-03-17 12:57:24 -0700
committerNathan Rajlich <nathan@tootallnate.net>2012-03-17 12:57:24 -0700
commit70e68893fe2fe911faf73c130b943eaf027c0b18 (patch)
treede8f8e1ecdb8a068cac9cc26a473eff1b02a7f62 /configure
parent815169383ee94ebcdb4805c40eefdba521f410bd (diff)
downloadandroid-node-v8-70e68893fe2fe911faf73c130b943eaf027c0b18.tar.gz
android-node-v8-70e68893fe2fe911faf73c130b943eaf027c0b18.tar.bz2
android-node-v8-70e68893fe2fe911faf73c130b943eaf027c0b18.zip
build: make --openssl-use-sys a boolean option
Before you had to enter a truthy value like: --openssl-use-sys=1
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 27a1146947..7b41cdc591 100755
--- a/configure
+++ b/configure
@@ -66,7 +66,7 @@ parser.add_option("--shared-v8-libname",
help="Alternative lib name to link to (default: 'v8')")
parser.add_option("--openssl-use-sys",
- action="store",
+ action="store_true",
dest="openssl_use_sys",
help="Use the system OpenSSL instead of one included with Node")