File: rules

package info (click to toggle)
mtd-utils 1%3A2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie, trixie-backports
  • size: 3,884 kB
  • sloc: ansic: 58,324; sh: 2,119; makefile: 71
file content (22 lines) | stat: -rwxr-xr-x 531 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
CONFIGURE_ARGS = --enable-unit-tests
else
CONFIGURE_ARGS = --disable-unit-tests
endif

override_dh_auto_configure:
	dh_auto_configure -- --with-selinux $(CONFIGURE_ARGS)

# tests are known to pass only on the listed architectures
# They used to pass on arm(el,hf) where mocking is broken now.
ifeq (,$(filter amd64 arm64 i386 mipsel s390x x32,$(DEB_HOST_ARCH)))
override_dh_auto_test:
	-dh_auto_test
endif