Skip to content

Commit

Permalink
build: disable the python bindings for the v2.1.x release
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
pcmoore committed Jun 10, 2013
1 parent 909d254 commit a363a8d
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ Options:
* installation configuration
--prefix=PREFIX installation base [/usr/local]
--libdir=DIR library directory [/usr/local/lib]
* build options
--enable-python build the python bindings, requires cython
EOF
}

Expand All @@ -73,7 +71,6 @@ function msg_summary() {
installation base: $opt_prefix
library directory: $opt_libdir
use system includes: $opt_sysinc_seccomp
python bindings: $opt_bindings_python
EOF
}

Expand Down Expand Up @@ -172,7 +169,7 @@ verify_deps getopt

# parse the command line options
opt_str="$@"
opt=$(getopt -n "$0" --options "h" --longoptions "help,prefix:,libdir:,enable-python" -- "$@")
opt=$(getopt -n "$0" --options "h" --longoptions "help,prefix:,libdir:" -- "$@")
eval set -- "$opt"
while [[ $# -gt 0 ]]; do
case "$1" in
Expand All @@ -184,10 +181,6 @@ while [[ $# -gt 0 ]]; do
opt_libdir="$2"
shift 2
;;
--enable-python)
opt_bindings_python="yes"
shift
;;
-h|--help)
msg_usage
exit 0
Expand Down

0 comments on commit a363a8d

Please sign in to comment.