From f3f1068b7a262394c2c7aeb4051019a390119b86 Mon Sep 17 00:00:00 2001 From: nl6720 Date: Fri, 17 Jun 2022 09:23:34 +0300 Subject: [PATCH] Do not pass a keyring name to pacman-key If the keyring is not specified, pacman-key will simply use all keyrings from /usr/share/pacman/keyrings/. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e86662..6de14d5 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ define rootfs cp --recursive --preserve=timestamps --backup --suffix=.pacnew rootfs/* $(BUILDDIR)/ fakechroot -- fakeroot -- chroot $(BUILDDIR) update-ca-trust - fakechroot -- fakeroot -- chroot $(BUILDDIR) sh -c 'pacman-key --init && pacman-key --populate archlinux && bash -c "rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*"' + fakechroot -- fakeroot -- chroot $(BUILDDIR) sh -c 'pacman-key --init && pacman-key --populate && bash -c "rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*"' ln -fs /usr/lib/os-release $(BUILDDIR)/etc/os-release