python3: Minor edits for python3-package.mk
* Remove PYTHON3_BIN_DIR, it isn't used anywhere in the repo * Rephrase *-src package description * Reduce Py3Package/$(1)/install indentation Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
parent
c9b260f5ae
commit
ba127c155a
1 changed files with 8 additions and 9 deletions
|
@ -5,13 +5,12 @@
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
#
|
#
|
||||||
|
|
||||||
# Note: include this after `include $(TOPDIR)/rules.mk in your package Makefile
|
# Note: include this file after `include $(TOPDIR)/rules.mk in your package Makefile
|
||||||
|
|
||||||
python3_mk_path:=$(dir $(lastword $(MAKEFILE_LIST)))
|
python3_mk_path:=$(dir $(lastword $(MAKEFILE_LIST)))
|
||||||
include $(python3_mk_path)python3-host.mk
|
include $(python3_mk_path)python3-host.mk
|
||||||
|
|
||||||
PYTHON3_DIR:=$(STAGING_DIR)/usr
|
PYTHON3_DIR:=$(STAGING_DIR)/usr
|
||||||
PYTHON3_BIN_DIR:=$(PYTHON3_DIR)/bin
|
|
||||||
PYTHON3_INC_DIR:=$(PYTHON3_DIR)/include/python$(PYTHON3_VERSION)
|
PYTHON3_INC_DIR:=$(PYTHON3_DIR)/include/python$(PYTHON3_VERSION)
|
||||||
PYTHON3_LIB_DIR:=$(PYTHON3_DIR)/lib/python$(PYTHON3_VERSION)
|
PYTHON3_LIB_DIR:=$(PYTHON3_DIR)/lib/python$(PYTHON3_VERSION)
|
||||||
|
|
||||||
|
@ -135,7 +134,6 @@ define Py3Package/ProcessFilespec
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Py3Package
|
define Py3Package
|
||||||
|
|
||||||
define Package/$(1)-src
|
define Package/$(1)-src
|
||||||
$(call Package/$(1))
|
$(call Package/$(1))
|
||||||
DEPENDS:=
|
DEPENDS:=
|
||||||
|
@ -148,8 +146,9 @@ define Py3Package
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/$(1)-src/description
|
define Package/$(1)-src/description
|
||||||
$(call Package/$(1)/description).
|
$$(call Package/$(1)/description)
|
||||||
(Contains the Python3 sources for this package).
|
|
||||||
|
This package contains the Python source files for $(1).
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/$(1)-src/config
|
define Package/$(1)-src/config
|
||||||
|
@ -163,10 +162,10 @@ define Py3Package
|
||||||
|
|
||||||
ifndef Py3Package/$(1)/install
|
ifndef Py3Package/$(1)/install
|
||||||
define Py3Package/$(1)/install
|
define Py3Package/$(1)/install
|
||||||
if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \
|
if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \
|
||||||
$(INSTALL_DIR) $$(1)/usr/bin ; \
|
$(INSTALL_DIR) $$(1)/usr/bin ; \
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ ; \
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $$(1)/usr/bin/ ; \
|
||||||
fi
|
fi
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue