~ubuntu-branches/ubuntu/quantal/squashfs-tools/quantal

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Emmet Hikory
  • Date: 2009-12-17 23:04:46 UTC
  • Revision ID: james.westby@ubuntu.com-20091217230446-dij5614mc0p2ssm2
Tags: 1:4.0-6ubuntu1
Build with -marm to avoid using Thumb2 instructions
(Older kernels don't support these instructions: LP: #494667)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
 
 
3
# Workaround for older kernels not supporting Thumb2
 
4
ifeq ($(DEB_BUILD_ARCH_CPU),arm)
 
5
        export CFLAGS += -marm
 
6
endif
 
7
 
3
8
%:
4
9
        dh ${@} --sourcedirectory=squashfs-tools --with quilt
5
10