diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-04 17:20:49 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-04 17:20:49 +0000 |
commit | 6c7a71c78ecaf19ba40305f78e889d8295e5d745 (patch) | |
tree | 0606e252792093c22e03d71ed160b0f9151bdd63 /include | |
parent | bd544283dbb8c8c320c27c44dc54378ffc49a2dc (diff) | |
download | master-187ad058-6c7a71c78ecaf19ba40305f78e889d8295e5d745.tar.gz master-187ad058-6c7a71c78ecaf19ba40305f78e889d8295e5d745.tar.bz2 master-187ad058-6c7a71c78ecaf19ba40305f78e889d8295e5d745.zip |
[include] correct default package status info (install -> unknown) - fixes "opkg_conf_write_status_files: Internal error: package ... has a NULL dest"
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23222 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index f08cf897cb..a07c5cc38c 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -101,7 +101,7 @@ ifeq ($(DUMP),) echo "Provides: $(PROVIDES)"; \ echo "Source: $(SOURCE)"; \ echo "Section: $(SECTION)"; \ - echo "Status: install $(if $(filter hold,$(PKG_FLAGS)),hold,ok) not-installed"; \ + echo "Status: unknown $(if $(filter hold,$(PKG_FLAGS)),hold,ok) not-installed"; \ echo "Priority: $(PRIORITY)"; \ echo "Maintainer: $(MAINTAINER)"; \ echo "Architecture: $(PKGARCH)"; \ |