Closed Artoria2e5 closed 9 years ago
Status: impl pending
Status: discussion needed: how shall we handle python?
Current:
build_python_build(){
for PYTHON in "$(bool NOPYTHON2 || which python2 || which python || echo)" \
"$(bool NOPYTHON3 || which python3 || echo)"; do
if bool $USE_PYTHON_BUILD_FIRST; then
build_ready
"$PYTHON" build || return $?
fi
build_final
"$PYTHON" setup.py install $MAKE_AFTER --prefix=/usr --root="$PKGDIR" --optimize=1 || return $?
bool $NOPYTHONCLEAN || "$PYTHON" setup.py clean || true
done
}
build_start
is actually prepare
. Working on the rest.
Still need build_start
for autotools
after reconf
.
Impl-ed.
With this we can get a lot of
build
removed from our current abbs repo.Btw, maybe we should add some automated support for make with menuconfig and regular make.