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
This commit is contained in:
Nicolas Thill 2011-10-26 00:49:07 +00:00
parent 772a22ccb1
commit a930a79e08
1 changed files with 1 additions and 1 deletions

View File

@ -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; \
}; \