diff options
| author | Christian Marangi | 2024-05-26 17:28:46 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-06-11 21:58:17 +0000 |
| commit | 9f6fc4f52423ef48a6a2d5f275dddc83996c2cfe (patch) | |
| tree | eee21591b49e5cde88d230e2196e152c615037df | |
| parent | 93d49529a119a88e9049a868833a0eebb975b37c (diff) | |
| download | openwrt-9f6fc4f52423ef48a6a2d5f275dddc83996c2cfe.tar.gz | |
dropbear: don't install /usr/lib/opkg/info in package install
Don't install /usr/lib/opkg/info in package install as it doesn't make
sense and conflicts with APK installations.
Fixes: a377aa9ab534 ("add dropkey ssh keys and config files to the conffiles section (#2014)")
Link: https://github.com/openwrt/openwrt/pull/15543
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | package/network/services/dropbear/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/package/network/services/dropbear/Makefile b/package/network/services/dropbear/Makefile index 3812602b35..3367fd7f74 100644 --- a/package/network/services/dropbear/Makefile +++ b/package/network/services/dropbear/Makefile @@ -224,7 +224,6 @@ define Package/dropbear/install $(INSTALL_CONF) ./files/dropbear.config $(1)/etc/config/dropbear $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear - $(INSTALL_DIR) $(1)/usr/lib/opkg/info $(INSTALL_DIR) $(1)/etc/dropbear $(INSTALL_DIR) $(1)/lib/preinit $(INSTALL_DATA) ./files/dropbear.failsafe $(1)/lib/preinit/99_10_failsafe_dropbear |