summaryrefslogtreecommitdiff
path: root/include/package-ipkg.mk
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2011-10-26 00:49:07 +0000
committerNicolas Thill <nico@openwrt.org>2011-10-26 00:49:07 +0000
commita930a79e089cc5c10aec5b3da3fe42490706e696 (patch)
tree534c6716c7727e343ff4c62879c89b343a4f3047 /include/package-ipkg.mk
parent772a22ccb1a0a461be55e90c725128622effab4e (diff)
downloadmtk-20170518-a930a79e089cc5c10aec5b3da3fe42490706e696.zip
mtk-20170518-a930a79e089cc5c10aec5b3da3fe42490706e696.tar.gz
mtk-20170518-a930a79e089cc5c10aec5b3da3fe42490706e696.tar.bz2
include/package-ipkg.mk: fix typo
Fix a typo that caused packaging of an empty ./lib/upgrade/keep.d directory when the package supplied conffiles SVN-Revision: 28595
Diffstat (limited to 'include/package-ipkg.mk')
-rw-r--r--include/package-ipkg.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk
index 33b9ef8..9eec4f2 100644
--- a/include/package-ipkg.mk
+++ b/include/package-ipkg.mk
@@ -123,7 +123,7 @@ ifeq ($(DUMP),)
for x in $$(KEEP_$(1)); do \
[ -f "$$(IDIR_$(1))/$$$$x" ] || keepfiles="$$$${keepfiles:+$$$$keepfiles }$$$$x"; \
done; \
- [ -z "$keepfiles" ] || { \
+ [ -z "$$$$keepfiles" ] || { \
mkdir -p $$(IDIR_$(1))/lib/upgrade/keep.d; \
for x in $$$$keepfiles; do echo $$$$x >> $$(IDIR_$(1))/lib/upgrade/keep.d/$(1); done; \
}; \