diff options
| author | Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> | 2022-02-10 17:14:03 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-24 11:12:39 +0000 |
| commit | 2dcbf103c75cc3af10e5f263ab0a2c9a68aca151 (patch) | |
| tree | b7204a2c8874fae349fff078cd45740cdf696163 | |
| parent | 3373a7a0fec445acc259b922b460e5c4c3f2597d (diff) | |
| download | poky-2dcbf103c75cc3af10e5f263ab0a2c9a68aca151.tar.gz | |
gcc-target: fix glob to remove gcc-<version> binary
The glob to remove the gcc-<version> binary expects a single-digit major
version which is no longer true.
(From OE-Core rev: 542ceb1cb20bd1117e957143c854526896e17793)
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 30de10cf939cf65c0cab6730a3575bced5c7533a)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index bf55e692e6..bcea75b2fa 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
| @@ -193,7 +193,7 @@ do_install () { | |||
| 193 | rm -f *c++* | 193 | rm -f *c++* |
| 194 | 194 | ||
| 195 | # We don't care about the gcc-<version> ones for this | 195 | # We don't care about the gcc-<version> ones for this |
| 196 | rm -f *gcc-?.?* | 196 | rm -f *gcc-?*.?* |
| 197 | 197 | ||
| 198 | # Not sure why we end up with these but we don't want them... | 198 | # Not sure why we end up with these but we don't want them... |
| 199 | rm -f ${TARGET_PREFIX}${TARGET_PREFIX}* | 199 | rm -f ${TARGET_PREFIX}${TARGET_PREFIX}* |
