This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
intel-gmmlib/debian/rules

11 lines
238 B
Plaintext
Raw Normal View History

2023-10-27 14:42:54 +02:00
#!/usr/bin/make -f
2023-10-27 14:38:34 +02:00
%:
dh $@
2023-10-27 14:42:54 +02:00
override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
# Requires Broadwell or newer, so check for SSE 4.2 support at least.
if grep -q sse4_2 /proc/cpuinfo; then dh_auto_test; fi
endif