mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-17 06:50:07 +00:00
68f542b606
License-Update: Use full file for checksum ( COPYING -> LICENSE ) Use system libpcre Drop py3 support patches, its default now Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
788 B
Diff
24 lines
788 B
Diff
[PATCH] redefine the python library install dir
|
|
|
|
Upstream-Status: Pending
|
|
|
|
If install-lib is not defined, it is always /usr/lib/, but it
|
|
maybe /usr/lib64 for multilib
|
|
|
|
Signed-off-by: Roy Li <rongqing.li@windriver.com>
|
|
---
|
|
Makefile.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -383,7 +383,7 @@ build-nping: $(NPINGDIR)/Makefile build-
|
|
@cd $(NPINGDIR) && $(MAKE)
|
|
|
|
install-ndiff:
|
|
- cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" $(if $(DESTDIR),--root "$(DESTDIR)")
|
|
+ cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" --install-lib="${PYTHON_SITEPACKAGES_DIR}" $(if $(DESTDIR),--root "$(DESTDIR)")
|
|
|
|
NSE_FILES = scripts/script.db scripts/*.nse
|
|
NSE_LIB_LUA_FILES = nselib/*.lua nselib/*.luadoc
|