diff options
author | Olivier Ramonat <ramonat@adacore.com> | 2011-03-29 14:19:40 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-29 20:16:17 +0300 |
commit | a796d24cf697b0b51aa0ca7ef887e980f0d9fb7a (patch) | |
tree | 9b2dea667abd12a0fe77bb9dc38837a33675bcd1 | |
parent | 553fbd640fab5a3f52a20cf1f1ed045ba9349d65 (diff) | |
download | libgit2-a796d24cf697b0b51aa0ca7ef887e980f0d9fb7a.tar.gz |
Fix help message for waf configure --with-sqlite
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ PPC optimized version (ppc) or the SHA1 functions from OpenSSL (openssl)") opt.add_option('--arch', action='store', default='x86', help='Select target architecture (ia64, x64, x86, x86_amd64, x86_ia64)') opt.add_option('--with-sqlite', action='store_true', default=False, - dest='use_sqlite', help='Disable sqlite support') + dest='use_sqlite', help='Enable sqlite support') opt.add_option('--threadsafe', action='store_true', default=False, help='Make libgit2 thread-safe (requires pthreads)') |