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-12 17:05:35 +0000 |
commit | 21adae4959348519c63821ed53fb9632f579b2f6 (patch) | |
tree | c2230e3fb6292c592c7d74708e0e543eac018753 /meta/recipes-devtools | |
parent | 2040c70fcccb3bb89b9196f1676bc7ff5ea5a876 (diff) | |
download | poky-21adae4959348519c63821ed53fb9632f579b2f6.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: 30de10cf939cf65c0cab6730a3575bced5c7533a)
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-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}* |