From 67b4614ea529460dca9326bfe5d355bad6f9bdee Mon Sep 17 00:00:00 2001 From: Roy Li Date: Sun, 27 Apr 2025 16:33:08 +0800 Subject: [PATCH] redefine the python library install dir If install-lib is not defined, it is always /usr/lib/, but it maybe /usr/lib64 for multilib Upstream-Status: Pending Signed-off-by: Roy Li --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ccfceda..6b25d27 100644 --- a/Makefile.in +++ b/Makefile.in @@ -387,7 +387,7 @@ build-nping: $(NPINGDIR)/Makefile build-nbase build-nsock build-netutil $(NPINGD @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 -- 2.34.1