diff options
| author | Paul Spooren | 2020-09-29 09:09:22 +0000 |
|---|---|---|
| committer | Daniel Golle | 2020-09-30 02:26:12 +0000 |
| commit | 359a4b46bb234166010b3e63b147d93db6c3b4f5 (patch) | |
| tree | 3eae42acbcecc3e03c604d1022a86ba435387062 | |
| parent | 18acf62be1e128f60d48833687bb1bfe058c9ad5 (diff) | |
| download | openwrt-359a4b46bb234166010b3e63b147d93db6c3b4f5.tar.gz | |
refpolicy: fix path to setfiles and checkpolicy
Directly set path via MAKE vars instead of defning TESTTOOLS. This way
setfiles, which is required by the ImageBuilder, ends up in /host/bin
while checkpolicy can stay in hostpkg/bin.
Signed-off-by: Paul Spooren <mail@aparcar.org>
| -rw-r--r-- | package/system/refpolicy/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/system/refpolicy/Makefile b/package/system/refpolicy/Makefile index a80b4d043c..a431770955 100644 --- a/package/system/refpolicy/Makefile +++ b/package/system/refpolicy/Makefile @@ -56,9 +56,8 @@ endef # builds is a small host tool that gets run as part of the build # process. MAKE_FLAGS += \ - TEST_TOOLCHAIN="$(STAGING_DIR_HOSTPKG)" \ - BINDIR=/bin \ - SBINDIR=/sbin \ + SETFILES="$(STAGING_DIR_HOST)/bin/setfiles" \ + CHECKPOLICY="$(STAGING_DIR_HOSTPKG)/bin/checkpolicy" \ CC="$(HOSTCC)" \ CFLAGS="$(HOST_CFLAGS)" |