mirror of
https://github.com/SELinuxProject/refpolicy
synced 2025-01-15 11:40:42 +00:00
Makefile: drop duplicate quotes
The variable is used quoted. Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
This commit is contained in:
parent
71f4bd1992
commit
47eced9be5
4
Makefile
4
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)
|
||||
|
Loading…
Reference in New Issue
Block a user