From: Mark Wooding Date: Sun, 29 Sep 2019 15:39:13 +0000 (+0100) Subject: debian/rules: Prefix `dh' options with `-O' to prevent sadness. X-Git-Tag: 2.4.4~3 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/24479376b17278141973e20235de8fa8c06b5aea debian/rules: Prefix `dh' options with `-O' to prevent sadness. --- diff --git a/debian/rules b/debian/rules index a7ae1b01..509866f5 100755 --- a/debian/rules +++ b/debian/rules @@ -4,5 +4,5 @@ DH_OPTIONS = --parallel -Bdebian/build ## Test both with and without CPU-specific optimizations. override_dh_auto_test: - dh_auto_test $(DH_OPTIONS) - CATACOMB_CPUFEAT="-*" dh_auto_test $(DH_OPTIONS) + dh_auto_test $(addprefix -O, $(DH_OPTIONS)) + CATACOMB_CPUFEAT="-*" dh_auto_test $(addprefix -O, $(DH_OPTIONS))