summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2013-06-10 16:54:56 -0400
committerPaul Moore <pmoore@redhat.com>2013-06-10 16:54:56 -0400
commita363a8dfd73821a0086fe985daf8c8e7c81cd8e0 (patch)
treef78035b94e68a168144cf3aa546694860f51127e
parent909d254a4dcbc5b593c79b565a0e8c2de74c6781 (diff)
downloadlibseccomp-a363a8dfd73821a0086fe985daf8c8e7c81cd8e0.tar.gz
build: disable the python bindings for the v2.1.x releasev2.1.0
Signed-off-by: Paul Moore <pmoore@redhat.com>
-rwxr-xr-xconfigure9
1 files changed, 1 insertions, 8 deletions
diff --git a/configure b/configure
index 50bdcca..7c9f990 100755
--- a/configure
+++ b/configure
@@ -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
}
@@ -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
}
@@ -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
@@ -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