lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit cad9bdbc85fa8308aeea0c1a7975704dfa7a1edf
parent 84d39fefafbdf3928c17c6ef68c4f875c4903acf
Author: Nicolas Thill <nico@openwrt.org>
Date:   Thu, 23 Oct 2014 22:50:54 +0200

python, python3: fix python*-package.mk

Replace calls to getvar function recently removed

Signed-off-by: Nicolas Thill <nico@openwrt.org>

Diffstat:
Mlang/python/files/python-package.mk | 2+-
Mlang/python3/files/python3-package.mk | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/python/files/python-package.mk b/lang/python/files/python-package.mk @@ -33,7 +33,7 @@ define PyPackage define Package/$(1)/install find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f - @$(SH_FUNC) getvar $$(call shvar,PyPackage/$(1)/filespec) | ( \ + @echo "$$$$$$$$$$(call shvar,PyPackage/$(1)/filespec)" | ( \ IFS='|'; \ while read fop fspec fperm; do \ if [ "$$$$$$$$fop" = "+" ]; then \ diff --git a/lang/python3/files/python3-package.mk b/lang/python3/files/python3-package.mk @@ -33,7 +33,7 @@ define Py3Package define Package/$(1)/install find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f - @$(SH_FUNC) getvar $$(call shvar,Py3Package/$(1)/filespec) | ( \ + @echo "$$$$$$$$$$(call shvar,PyPackage/$(1)/filespec)" | ( \ IFS='|'; \ while read fop fspec fperm; do \ if [ "$$$$$$$$fop" = "+" ]; then \