Merge pull request #971 from lrusak/steamcontroller

steamcontroller: mute python compileall.py output
This commit is contained in:
Christian Hewitt 2016-11-22 10:27:52 +04:00 committed by GitHub
commit 9f5db8632a

View File

@ -61,6 +61,6 @@ addon() {
fi
cp $(get_build_dir linux)/usr/include/linux/input.h $ADDON_BUILD/$PKG_ADDON_ID/include/linux/
python -Wi -t -B $ROOT/$TOOLCHAIN/lib/python2.7/compileall.py $ADDON_BUILD/$PKG_ADDON_ID/lib/ -f
python -Wi -t -B $ROOT/$TOOLCHAIN/lib/python2.7/compileall.py $ADDON_BUILD/$PKG_ADDON_ID/lib/ -f 1>/dev/null
find $ADDON_BUILD/$PKG_ADDON_ID/lib/ -name '*.py' -exec rm {} \;
}