Codebase list gcc-defaults-mipsen / 5dd3496
Use ?= for assignments to architecture variables. Changes-By: lintian-brush Fixes: lintian: debian-rules-sets-dpkg-architecture-variable See-also: https://lintian.debian.org/tags/debian-rules-sets-dpkg-architecture-variable.html Debian Janitor 2 years ago
2 changed file(s) with 4 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1010
1111 [ Debian Janitor ]
1212 * Trim trailing whitespace.
13 * Use ?= for assignments to architecture variables.
1314
1415 -- Matthias Klose <doko@debian.org> Thu, 10 Jun 2021 09:44:48 +0200
1516
203203 REQV_11 := (>= 11.1.0-2~)
204204
205205 # architecture dependent variables
206 DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
207 DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
206 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
207 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
208208 ifneq (,$(filter $(DEB_HOST_ARCH), i386 kfreebsd-i386 hurd-i386))
209209 DEB_HOST_GNU_TYPE := $(subst i586,i686,$(DEB_HOST_GNU_TYPE))
210210 i586_symlinks = yes
211211 endif
212 DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
212 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
213213
214214 all_archs_mips = mips mipsel mipsn32 mipsn32el mips64 mips64el mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el
215215 all_archs = alpha amd64 armel armhf arm64 hppa i386 ia64 m68k or1k powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 x32 hurd-i386 kfreebsd-amd64 kfreebsd-i386 \