diff options
author | Nathan Rajlich <nathan@tootallnate.net> | 2012-03-17 12:57:24 -0700 |
---|---|---|
committer | Nathan Rajlich <nathan@tootallnate.net> | 2012-03-17 12:57:24 -0700 |
commit | 70e68893fe2fe911faf73c130b943eaf027c0b18 (patch) | |
tree | de8f8e1ecdb8a068cac9cc26a473eff1b02a7f62 | |
parent | 815169383ee94ebcdb4805c40eefdba521f410bd (diff) | |
download | node-70e68893fe2fe911faf73c130b943eaf027c0b18.tar.gz |
build: make --openssl-use-sys a boolean option
Before you had to enter a truthy value like: --openssl-use-sys=1
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |