Merge pull request #1476 from thypon/dockstar

x264: disable assembly for armv5tel
This commit is contained in:
Juan RP 2015-05-02 02:39:01 +02:00
commit 09395b02e4

View file

@ -14,7 +14,7 @@ distfiles="http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapsho
checksum=3519e8fa3399845c7d2248d0a7297a923ac6bdc78d0ec15e85026e810670e1be
do_configure() {
if [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then
if [ "$XBPS_TARGET_MACHINE" = "armv6l" ] || [ "$XBPS_TARGET_MACHINE" = "armv5tel" ]; then
args+=" --disable-asm"
elif [ "$XBPS_TARGET_MACHINE" = "armv7l" ]; then
export AS=$CC