diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-11-02 20:46:03 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-11-02 20:51:30 +0000 |
commit | 4a2b1ff7fbd7aa910c2e29ae43d27fdddc58b177 (patch) | |
tree | 912f8ab4cb14bfd775c9498a3c6c9044dff3270b /package/system/opkg | |
parent | 0232bf601d6c8c174faa4c5bac1f6c86b20853c9 (diff) | |
download | upstream-4a2b1ff7fbd7aa910c2e29ae43d27fdddc58b177.tar.gz upstream-4a2b1ff7fbd7aa910c2e29ae43d27fdddc58b177.tar.bz2 upstream-4a2b1ff7fbd7aa910c2e29ae43d27fdddc58b177.zip |
opkg: fix dependency resolution
The previous commit broke opkg in a way that it would no longer
include dependencies when installing a package, effectively leading
to broken images and unusable systems.
Fix that by making sure dependencies are still going to be checked.
Also reduce size of struct abstract_pkg as suggested by @jow- while at
it.
Fixes: 1445d333aa ("opkg: bump to git HEAD")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/system/opkg')
-rw-r--r-- | package/system/opkg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile index d876ce7895..5893d76c74 100644 --- a/package/system/opkg/Makefile +++ b/package/system/opkg/Makefile @@ -14,9 +14,9 @@ PKG_FLAGS:=essential PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://git.openwrt.org/project/opkg-lede.git -PKG_SOURCE_DATE:=2020-10-30 -PKG_SOURCE_VERSION:=8769c75199b4668878176bde0e5faebf3bc61663 -PKG_MIRROR_HASH:=601af77e6855e30fd9b82184bf3cdbc9395fe46ad971a65c8ad5e1329e94c545 +PKG_SOURCE_DATE:=2020-11-02 +PKG_SOURCE_VERSION:=11ee06ea67ebe6a6f11323ad5a6d3c77071488cd +PKG_MIRROR_HASH:=ea2ee68ea56910e4bf8a43da919665b58d301bbb0e523b0c525a36d0f221387f PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=COPYING |