diff options
| author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:24 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:22:29 +0200 |
| commit | 685f44de98caec74eefd048b01b8550b63784300 (patch) | |
| tree | be5b45caf42b2262ce85b8ef6980cc6ddcd6eca1 /package/setools | |
| parent | 3b91bd479150a599970c9121a585df9fc1566ff7 (diff) | |
| download | buildroot-685f44de98caec74eefd048b01b8550b63784300.tar.gz buildroot-685f44de98caec74eefd048b01b8550b63784300.zip | |
Globally replace $(HOST_DIR)/usr with $(HOST_DIR)
Since things are no longer installed in $(HOST_DIR)/usr, the callers
should also not refer to it.
This is a mechanical change with
git grep -l '\$(HOST_DIR)/usr' | xargs sed -i 's%\$(HOST_DIR)/usr%$(HOST_DIR)%g'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/setools')
| -rw-r--r-- | package/setools/setools.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/setools/setools.mk b/package/setools/setools.mk index 5e101b1d86..d2e9f05998 100644 --- a/package/setools/setools.mk +++ b/package/setools/setools.mk @@ -64,8 +64,8 @@ HOST_SETOOLS_CONF_OPTS = \ --disable-swig-java \ --disable-swig-python \ --disable-swig-tcl \ - --with-sepol-devel="$(HOST_DIR)/usr" \ - --with-selinux-devel="$(HOST_DIR)/usr" \ + --with-sepol-devel="$(HOST_DIR)" \ + --with-selinux-devel="$(HOST_DIR)" \ PYTHON_LDFLAGS="-L$(HOST_DIR)/lib/" \ PYTHON_CPPFLAGS="-I$(HOST_SETOOLS_PYTHON_INCLUDES)" \ PYTHON_SITE_PKG="$(HOST_SETOOLS_PYTHON_SITE_PACKAGES)" \ |

