dev-python/pytables: Drop superfluous calls to python_is_python3

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2020-08-03 23:23:53 +02:00
parent 8f8ce4ee19
commit cce27e36f3
2 changed files with 0 additions and 12 deletions

View File

@@ -51,14 +51,6 @@ python_prepare_all() {
distutils-r1_python_prepare_all
}
python_compile() {
if ! python_is_python3; then
local -x CFLAGS="${CFLAGS}"
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
cd "${BUILD_DIR}"/lib* || die
${EPYTHON} tables/tests/test_all.py || die

View File

@@ -52,10 +52,6 @@ python_prepare_all() {
}
python_compile() {
if ! python_is_python3; then
local -x CFLAGS="${CFLAGS}"
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile -j1
}