diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-09 13:23:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 14:50:11 +0000 |
commit | a39b7e2c504e37fda145c54f48b0eec2cee9c257 (patch) | |
tree | 7372df2261cf8331d554a02439a4ca5ec672e15a /meta | |
parent | a0bfdfa9128a0604151e57e6a3d371b2899036ac (diff) | |
download | poky-a39b7e2c504e37fda145c54f48b0eec2cee9c257.tar.gz |
quilt: Don't add hardcoded links to utilities
This triggers warnings about absolute symlink paths with the PATH changes.
In reality we simply don't need/care about these so just remove/disable
them.
(From OE-Core rev: b319e43b9fee62f30c11d266a23cea4ff30addcd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/quilt/quilt.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/quilt/quilt.inc b/meta/recipes-devtools/quilt/quilt.inc index 9cf7bac5ee..85aaf8d3a8 100644 --- a/meta/recipes-devtools/quilt/quilt.inc +++ b/meta/recipes-devtools/quilt/quilt.inc | |||
@@ -35,6 +35,11 @@ EXTRA_OE_MAKE_ARGS ?= "BUILD_ROOT=${D}" | |||
35 | 35 | ||
36 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash" | 36 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash" |
37 | 37 | ||
38 | # Don't setup symlinks to host utilities, we don't need them | ||
39 | do_configure_append () { | ||
40 | sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile | ||
41 | } | ||
42 | |||
38 | # quilt ignores DESTDIR | 43 | # quilt ignores DESTDIR |
39 | do_install () { | 44 | do_install () { |
40 | oe_runmake ${EXTRA_OE_MAKE_ARGS} install | 45 | oe_runmake ${EXTRA_OE_MAKE_ARGS} install |