diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-09 02:19:22 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-08 17:47:36 -0700 |
commit | 7b1e9d3d854f0c0df58b88809793c1b114a45b90 (patch) | |
tree | d435f30fb0c5af183aa1d6794e7b7e8b4034cbe9 /configure.ac | |
parent | 1b1b678e3c4eebe0302455c248941e5627ce2b5b (diff) | |
download | git-7b1e9d3d854f0c0df58b88809793c1b114a45b90.tar.gz git-7b1e9d3d854f0c0df58b88809793c1b114a45b90.tar.xz |
autoconf: It is --without-python, not --no-python
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bc2824bb8..3fd3d55e4 100644 --- a/configure.ac +++ b/configure.ac @@ -102,7 +102,7 @@ GIT_ARG_SET_PATH(perl) # Define NO_PYTHON if you want to lose all benefits of the recursive merge. # Define PYTHON_PATH to provide path to Python. AC_ARG_WITH(python,[AS_HELP_STRING([--with-python=PATH], [provide PATH to python]) -AS_HELP_STRING([--no-python], [don't use python scripts])], +AS_HELP_STRING([--without-python], [don't use python scripts])], [if test "$withval" = "no"; then \ NO_PYTHON=YesPlease; \ elif test "$withval" = "yes"; then \ |