commit: 79a4ef791fa59b11ee1d620d8ee40147df5f6767
Author: Christian Göttsche <cgzones <AT> googlemail <DOT> com>
AuthorDate: Sat Aug 10 20:39:17 2024 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 22:28:29 2024 +0000
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=79a4ef79
Makefile: drop duplicate quotes
The variable is used quoted.
Signed-off-by: Christian Göttsche <cgzones <AT> googlemail.com>
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 42d6484bc..ddd00a3b7 100644
--- a/Makefile
+++ b/Makefile
@@ -50,9 +50,9 @@ ifdef TEST_TOOLCHAIN
python_path_plat := $(shell python3 -c "import sysconfig;
print(sysconfig.get_path('platlib', vars={'platbase': '/usr', 'base':
'/usr'}))")
python_path_pure := $(shell python3 -c "import sysconfig;
print(sysconfig.get_path('purelib', vars={'platbase': '/usr', 'base':
'/usr'}))")
ifdef PYTHONPATH
-python_path :=
"$(TEST_TOOLCHAIN)$(python_path_plat):$(TEST_TOOLCHAIN)$(python_path_pure):$(PYTHONPATH)"
+python_path :=
$(TEST_TOOLCHAIN)$(python_path_plat):$(TEST_TOOLCHAIN)$(python_path_pure):$(PYTHONPATH)
else
-python_path :=
"$(TEST_TOOLCHAIN)$(python_path_plat):$(TEST_TOOLCHAIN)$(python_path_pure)"
+python_path :=
$(TEST_TOOLCHAIN)$(python_path_plat):$(TEST_TOOLCHAIN)$(python_path_pure)
endif
tc_usrbindir := env
LD_LIBRARY_PATH="$(TEST_TOOLCHAIN)/lib:$(TEST_TOOLCHAIN)/usr/lib"
PYTHONPATH="$(python_path)" $(TEST_TOOLCHAIN)$(BINDIR)
tc_usrsbindir := env
LD_LIBRARY_PATH="$(TEST_TOOLCHAIN)/lib:$(TEST_TOOLCHAIN)/usr/lib"
PYTHONPATH="$(python_path)" $(TEST_TOOLCHAIN)$(SBINDIR)