~ubuntu-branches/ubuntu/vivid/mpv/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-06-25 12:08:54 UTC
  • Revision ID: package-import@ubuntu.com-20140625120854-93f95zfvrr4dvy30
Tags: 0.3.11-1ubuntu1
Build without Altivec on ppc64el for the moment, until we work out why
that fails with strange errors on bool types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
export DEB_BUILD_MAINT_OPTIONS:=hardening=+all # #741439
4
4
 
 
5
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 
6
ifeq ($(DEB_HOST_ARCH),ppc64el)
 
7
export DEB_CFLAGS_MAINT_APPEND := -mno-altivec
 
8
endif
 
9
 
5
10
%:
6
11
        dh $@
7
12