package-ipkg.mk: add missing semicolon (#19381)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45193
This commit is contained in:
Felix Fietkau 2015-03-31 18:29:30 +00:00
parent 78552c24ba
commit 765c73f309
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ define BuildIPKGVariable
ifdef Package/$(1)/$(2)
$$(IPKG_$(1)) : VAR_$(2)$(3)=$$(Package/$(1)/$(2))
$(call shexport,Package/$(1)/$(2))
$(1)_COMMANDS += echo "$$$$$$$$$(call shvar,Package/$(1)/$(2))" > $(2)$(3); $(if $(4),chmod 0755 $(2)$(3))
$(1)_COMMANDS += echo "$$$$$$$$$(call shvar,Package/$(1)/$(2))" > $(2)$(3); $(if $(4),chmod 0755 $(2)$(3));
endif
endef