[Pkg-xen-devel] [PATCH 1/9] Rework "debian/rules: Do not try to move EFI binaries on armhf"
Elliott Mitchell
ehem+debian at m5p.com
Fri Nov 27 02:29:17 GMT 2020
What is actually needed is a move command which fails if the move
fails, but succeeds if no files are moved. A combination of find/xargs
can match this, so use what works.
This reverts commit 8ff478af61fa8a87806a89bbd618cd9da2354302.
---
debian/rules | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/debian/rules b/debian/rules
index b21c9e6948..29a561b99f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -230,10 +230,7 @@ override_dh_auto_install: $(TEMPLATED_FILES)
-C tools/firmware install-shim
:
@# Inexplicably, upstream puts the efi binares in usr/lib64
- case $(flavour) in \
- armhf) ;; \
- *) mv $t/usr/lib64/efi/* $t/boot/. ;; \
- esac
+ find "$t/usr/lib64/efi" -mindepth 1 -maxdepth 1 -print0 | xargs -r -0 mv -t "$t/boot"
:
@# This file contains an arch-specific path and we put it
@# in xen-utils-common, an arch-all package. But the
--
(\___(\___(\______ --=> 8-) EHM <=-- ______/)___/)___/)
\BS ( | ehem+sigmsg at m5p.com PGP 87145445 | ) /
\_CS\ | _____ -O #include <stddisclaimer.h> O- _____ | / _/
8A19\___\_|_/58D2 7E3D DDF4 7BA6 <-PGP-> 41D1 B375 37D0 8714\_|_/___/5445
More information about the Pkg-xen-devel
mailing list