diff options
| author | Hauke Mehrtens | 2024-11-07 21:49:21 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-11-14 22:22:48 +0000 |
| commit | 740052e84e4b669dc750d15e0bc75d67fcfc46df (patch) | |
| tree | d213de675e00d6d9369b95753fe104f0722f8095 | |
| parent | fe048b5e875dd09e54d4b2c43f4e6c98c6d1ffae (diff) | |
| download | openwrt-740052e84e4b669dc750d15e0bc75d67fcfc46df.tar.gz | |
base-files: Remove pkg_check when using apk
/sbin/pkg_check uses opkg and is not even packaged when using the
default opkg configuration. remove it when using apk too.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 0ce237a20cc5168c62afcacb3b47d77a952d64c1)
| -rw-r--r-- | package/base-files/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 4da50a2736..4bcb4882d7 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -251,6 +251,7 @@ ifneq ($(CONFIG_USE_APK),) $(VERSION_SED_SCRIPT) $(1)/etc/apk/repositories rm -f $(1)/etc/uci-defaults/13_fix-group-user + rm -f $(1)/sbin/pkg_check else $(if $(CONFIG_CLEAN_IPKG),, \ mkdir -p $(1)/etc/opkg; \ |