mirror of
git://slackware.nl/current.git
synced 2024-12-30 10:24:23 +01:00
18 lines
281 B
Text
18 lines
281 B
Text
|
cd python2
|
||
|
if ! make $NUMJOBS ; then
|
||
|
touch ${SLACK_X_BUILD_DIR}/${PKGNAME}.failed
|
||
|
continue
|
||
|
fi
|
||
|
|
||
|
make install DESTDIR=$PKG
|
||
|
cd -
|
||
|
|
||
|
cd python3
|
||
|
if ! make $NUMJOBS ; then
|
||
|
touch ${SLACK_X_BUILD_DIR}/${PKGNAME}.failed
|
||
|
continue
|
||
|
fi
|
||
|
|
||
|
make install DESTDIR=$PKG
|
||
|
cd -
|