diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2020-02-21 00:48:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-21 17:48:08 +0000 |
commit | 580baf1fe0f993b60c3a6da0d16afaf946033d0b (patch) | |
tree | a49b3e67868b4245526d6eeff337207404aaf377 /meta | |
parent | adf9825d1c12fcce1249c3c4c37347ac713ff7ac (diff) | |
download | poky-580baf1fe0f993b60c3a6da0d16afaf946033d0b.tar.gz |
webkitgtk: fix reconfigure
| ln: failed to create symbolic link '/home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-mortsgna-linux-gnueabi/webkitgtk/2.26.4-r0/recipe-sysroot-native/usr/bin/python': File exists
(From OE-Core rev: 0d153e16ade03348f066e1cef916f28ce63b074c)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.26.4.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.26.4.bb b/meta/recipes-sato/webkit/webkitgtk_2.26.4.bb index 585723772e..fa109446d1 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.26.4.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.26.4.bb | |||
@@ -61,7 +61,9 @@ PACKAGECONFIG[openjpeg] = "-DUSE_OPENJPEG=ON,-DUSE_OPENJPEG=OFF,openjpeg" | |||
61 | # webkitgtk is full of /usr/bin/env python, particular for generating docs | 61 | # webkitgtk is full of /usr/bin/env python, particular for generating docs |
62 | do_configure[postfuncs] += "setup_python_link" | 62 | do_configure[postfuncs] += "setup_python_link" |
63 | setup_python_link() { | 63 | setup_python_link() { |
64 | ln -s `which python3` ${STAGING_BINDIR_NATIVE}/python | 64 | if [ ! -e ${STAGING_BINDIR_NATIVE}/python ]; then |
65 | ln -s `which python3` ${STAGING_BINDIR_NATIVE}/python | ||
66 | fi | ||
65 | } | 67 | } |
66 | 68 | ||
67 | EXTRA_OECMAKE = " \ | 69 | EXTRA_OECMAKE = " \ |