From: nico Date: Wed, 26 Oct 2011 00:49:07 +0000 (+0000) Subject: include/package-ipkg.mk: fix typo X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/bb36cd2baa6ba77cb9cda0c20fb71555f0748a69?ds=sidebyside 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28595 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 33b9ef835..9eec4f26e 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; \ }; \