lede-packages-rs

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

commit 17da9886456369878560953ffb773292f6a2a00a
parent 7db24395649716f0cb1603b1734940fd348fcc32
Author: Alexandru Ardelean <ardeleanalex@gmail.com>
Date:   Tue,  7 Mar 2017 14:50:19 +0200

python,python3: fix goof with multiline command break

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

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

diff --git a/lang/python/files/python-package.mk b/lang/python/files/python-package.mk @@ -44,8 +44,8 @@ define PyPackage ifndef PyPackage/$(1)/install define PyPackage/$(1)/install if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \ - $(INSTALL_DIR) $$(1)/usr/bin \ - $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ + $(INSTALL_DIR) $$(1)/usr/bin ; \ + $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ ; \ fi endef endif diff --git a/lang/python3/files/python3-package.mk b/lang/python3/files/python3-package.mk @@ -44,8 +44,8 @@ define Py3Package ifndef Py3Package/$(1)/install define Py3Package/$(1)/install if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \ - $(INSTALL_DIR) $$(1)/usr/bin \ - $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ + $(INSTALL_DIR) $$(1)/usr/bin ; \ + $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ ; \ fi endef endif