diff options
author | Jeffery To <jeffery.to@gmail.com> | 2015-11-16 19:52:40 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2015-11-16 19:52:40 +0800 |
commit | d9409e25cc1bfda5a9acabab1fdf5632d497427e (patch) | |
tree | fbf32a0bbd7aebfef2cbe1f9b8d62b4b600b3beb /lang/python-ply/Makefile | |
parent | 6afa7989580ff10b2d3a0ab44cf42f77e8a3470d (diff) |
package-ply: use given path instead of copying directly into staging_dir
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python-ply/Makefile')
-rw-r--r-- | lang/python-ply/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile index 3e8792c80..ed3fb833d 100644 --- a/lang/python-ply/Makefile +++ b/lang/python-ply/Makefile @@ -43,10 +43,10 @@ define Build/Compile endef define Build/InstallDev - $(INSTALL_DIR) $(PYTHON_LIB_DIR)/site-packages + $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) $(CP) \ $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ - $(PYTHON_LIB_DIR)/site-packages + $(1)$(PYTHON_PKG_DIR) endef $(eval $(call PyPackage,python-ply)) |