diff options
| author | Steve McIntyre <steve@einval.com> | 2021-03-31 18:42:38 +0100 |
|---|---|---|
| committer | Steve McIntyre <steve@einval.com> | 2021-03-31 17:51:15 +0000 |
| commit | d6b0fa523dcce24265882d3ea19401ae704fb565 (patch) | |
| tree | 2ca90d7d86276bce9051e5c13ed97c1fae1e0198 | |
| parent | 2f7c6c8d0c9c371aaac5dd52b204dc7dad1534e7 (diff) | |
| download | efi-boot-shim-d6b0fa523dcce24265882d3ea19401ae704fb565.tar.gz efi-boot-shim-d6b0fa523dcce24265882d3ea19401ae704fb565.zip | |
Override dh_auto_build setting INSTALL, cut down on build noise
| -rw-r--r-- | debian/changelog | 1 | ||||
| -rwxr-xr-x | debian/rules | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index befe4b78..67fbaafc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ shim (15.4-1) unstable; urgency=medium * New upstream release fixing more bugs: SBAT and arm64 support. * Print sha256 checksums of the EFI binaries when the build is done, for easier comparison between builds. + * Override dh_auto_build setting INSTALL, cut down on build noise. -- Steve McIntyre <93sam@debian.org> Wed, 31 Mar 2021 18:25:00 +0100 diff --git a/debian/rules b/debian/rules index a5b9e28e..7a538f79 100755 --- a/debian/rules +++ b/debian/rules @@ -68,11 +68,11 @@ override_dh_auto_clean: rm -f $(DBX_LIST) $(SBAT_DATA) sbat.*.csv override_dh_auto_build: $(DBX_LIST) $(SBAT_DATA) - dh_auto_build -- $(COMMON_OPTIONS) + dh_auto_build -- INSTALL=install $(COMMON_OPTIONS) sha256sum *.efi override_dh_auto_install: - dh_auto_install --destdir=debian/tmp -- $(COMMON_OPTIONS) + dh_auto_install --destdir=debian/tmp -- INSTALL=install $(COMMON_OPTIONS) # Remove the copy of the source that's installed - we have git # already... rm -rf debian/tmp/usr |
