1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all abi=+lfs
export DEB_CFLAGS_MAINT_PREPEND = -Wall
include /usr/share/dpkg/default.mk
include /usr/share/dpkg/buildtools.mk
# The following architectures still fail the test suite:
# m68k
# (emulated, no proper test results)
# sh4
# (emulated, no proper test results)
# sparc64
# (19: mremap EINVAL)
# hppa
# (19: mremap EINVAL)
# (17: looping, timeout?)
ifneq (,$(filter $(DEB_HOST_ARCH),m68k sh4 sparc64 hppa))
TESTS_FLAKY = yes
endif
export CC
%:
dh $@
override_dh_auto_test:
ifeq ($(TESTS_FLAKY),yes)
@echo "Notice: Running tests in flaky mode, errors will be ignored."
endif
$(if $(TESTS_FLAKY),-)$(MAKE) partcheck \
CPPFLAGS="$(CPPFLAGS)" \
CFLAGS="$(CFLAGS)" \
LDFLAGS="$(LDFLAGS)"
override_dh_auto_install:
dh_auto_install -- \
libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
override_dh_installchangelogs:
dh_installchangelogs --no-trim
override_dh_makeshlibs:
# XXX: Ideally we'd also rename the udeb, but d-i does not really
# care about file conflicts, and that would take us through NEW
# in the middle of the time64 transition.
dh_makeshlibs --add-udeb=libaio1-udeb
|