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:
parent
772a22ccb1
commit
a930a79e08
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ ifeq ($(DUMP),)
|
||||||
for x in $$(KEEP_$(1)); do \
|
for x in $$(KEEP_$(1)); do \
|
||||||
[ -f "$$(IDIR_$(1))/$$$$x" ] || keepfiles="$$$${keepfiles:+$$$$keepfiles }$$$$x"; \
|
[ -f "$$(IDIR_$(1))/$$$$x" ] || keepfiles="$$$${keepfiles:+$$$$keepfiles }$$$$x"; \
|
||||||
done; \
|
done; \
|
||||||
[ -z "$keepfiles" ] || { \
|
[ -z "$$$$keepfiles" ] || { \
|
||||||
mkdir -p $$(IDIR_$(1))/lib/upgrade/keep.d; \
|
mkdir -p $$(IDIR_$(1))/lib/upgrade/keep.d; \
|
||||||
for x in $$$$keepfiles; do echo $$$$x >> $$(IDIR_$(1))/lib/upgrade/keep.d/$(1); done; \
|
for x in $$$$keepfiles; do echo $$$$x >> $$(IDIR_$(1))/lib/upgrade/keep.d/$(1); done; \
|
||||||
}; \
|
}; \
|
||||||
|
|
Loading…
Reference in a new issue