> P.S. You may wish to disable DH_VERBOSE to save a little buildd time when > doing > releases.
Thanks again for taking a look. DH_VERBOSE was disabled because I forgot to actually export it. Also computing the PHP version only once in the latest mentors upload. diff --git a/debian/rules b/debian/rules index caec198..4fe4f7d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -DH_VERBOSE = 1 +#export DH_VERBOSE = 1 DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/default.mk @@ -8,7 +8,7 @@ include /usr/share/dpkg/default.mk export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=+lto export DEB_CFLAGS_MAINT_APPEND = -Werror -PHP_VERSION = $(shell phpquery -q -V) +PHP_VERSION := $(shell phpquery -q -V) %: dh $@ --sourcedirectory src --with php