From 8ff478af61fa8a87806a89bbd618cd9da2354302 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 12 Oct 2018 20:46:22 +0100 Subject: [PATCH] debian/rules: Do not try to move EFI binaries on armhf Signed-off-by: Ian Jackson --- debian/rules | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 45c6658157..1254bd794e 100755 --- a/debian/rules +++ b/debian/rules @@ -226,7 +226,10 @@ override_dh_auto_install: $(TEMPLATED_FILES) mv $t/usr/share/pkgconfig $t/usr/lib/$(DEB_HOST_MULTIARCH)/ : @# Inexplicably, upstream pots the efi binares in usr/lib64 - mv $t/usr/lib64/efi/* $t/boot/. + case $(flavour) in \ + armhf) ;; \ + *) mv $t/usr/lib64/efi/* $t/boot/. ;; \ + esac # libfsimage not only has an unstable ABI, but also a very poor name. # Our makefile patch puts it in a different directory and fixes up the -- 2.30.2