~ubuntu-branches/ubuntu/vivid/qemu/vivid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): dann frazier
  • Date: 2014-02-11 15:41:53 UTC
  • Revision ID: package-import@ubuntu.com-20140211154153-2d001tf0ium08u81
Tags: 1.7.0+dfsg-3ubuntu2
* Backport changes to enable qemu-user-static support for aarch64
* debian/control: add ppc64el to Architectures
* debian/rules: only install qemu-system-aarch64 on arm64.
  Fixes a FTBFS  when built twice in a row on non-arm64 due to a stale
  debian/qemu-system-aarch64 directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 mips mipsel mips64 mips64el moxie or32 ppc ppcemb ppc64 sh4 sh4eb \
55
55
 sparc sparc64 s390x xtensa xtensaeb unicore32
56
56
ifeq ($(DEB_VENDOR),Ubuntu)
 
57
ifeq ($(DEB_HOST_ARCH),arm64)
57
58
system_targets += aarch64
58
59
endif
 
60
endif
59
61
 
60
62
# qemu-system subpackages, from d/control
61
63
sys_systems = arm mips ppc sparc x86
62
64
ifeq ($(DEB_VENDOR),Ubuntu)
 
65
ifeq ($(DEB_HOST_ARCH),arm64)
63
66
sys_systems += aarch64
64
67
sysarch_aarch64 = $(filter aarch64,${system_targets})
65
68
endif
 
69
endif
66
70
systems = ${sys_systems} misc
67
71
sysarch_arm   = $(filter arm,${system_targets})
68
72
sysarch_mips  = $(filter mips mipsel mips64 mips64el,${system_targets})
85
89
 mips mipsel mips64 mips64el mipsn32 mipsn32el or32 \
86
90
 ppc ppc64 ppc64abi32 sh4 sh4eb sparc sparc64 sparc32plus \
87
91
 unicore32 s390x
 
92
ifeq ($(DEB_VENDOR),Ubuntu)
 
93
user_targets += aarch64
 
94
endif
88
95
 
89
96
# binfmt linux-user support
90
97