diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-11-20 05:07:43 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-11-20 05:08:46 +0000 |
commit | fd5cb376b52155a814dea23a83d763def6419c8a (patch) | |
tree | 2b65c7091ee1a6a076bb4642ef331c29d66fb7ce /admin/debian-archive-keyring | |
parent | 832292b6390039acb35976d0fde8611bf386fec3 (diff) |
debian-archive-keyring: install to expected location
'/usr/share/keyring' -> '/usr/share/keyrings'
Makes debootstrap happy.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'admin/debian-archive-keyring')
-rw-r--r-- | admin/debian-archive-keyring/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/debian-archive-keyring/Makefile b/admin/debian-archive-keyring/Makefile index dc71b87d2..7b5eca5af 100644 --- a/admin/debian-archive-keyring/Makefile +++ b/admin/debian-archive-keyring/Makefile @@ -3,7 +3,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=debian-archive-keyring PKG_VERSION:=2019.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=debian-archive-keyring_2019.1_all.deb PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/d/debian-archive-keyring/ @@ -35,8 +35,8 @@ define Build/Compile endef define Package/debian-archive-keyring/install - $(INSTALL_DIR) $(1)/usr/share/keyring - $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/keyrings/*.gpg $(1)/usr/share/keyring + $(INSTALL_DIR) $(1)/usr/share/keyrings + $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/keyrings/*.gpg $(1)/usr/share/keyrings endef $(eval $(call BuildPackage,debian-archive-keyring)) |