diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-12 12:14:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-12 17:45:41 +0000 |
commit | 48633e5dd54f4aa0b224403bf316c56e0e1e1f79 (patch) | |
tree | 0dc194fb8b94eef3d0f94d861aa5b9a5ffa2563b /meta/recipes-graphics/mesa | |
parent | c27b7aab3c37f182bf9acc5d459185f32fb195d0 (diff) | |
download | poky-48633e5dd54f4aa0b224403bf316c56e0e1e1f79.tar.gz |
mesa-dri-glsl-native: Avoid error when running configure a second time
This avoids the error:
ln: creating symbolic link `/media/data1/build1/poky/build/tmp/work/x86_64-linux/mesa-dri-glsl-native-7.11-r0/Mesa-7.11/src/glsl//../../configs/current': File exists
(From OE-Core rev: 7871772c74e65ef472c5bf3776e4b3b30308bd5d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-dri-glsl-native_7.11.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-dri-glsl-native_7.11.bb b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_7.11.bb index 07b076118b..91945956ba 100644 --- a/meta/recipes-graphics/mesa/mesa-dri-glsl-native_7.11.bb +++ b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_7.11.bb | |||
@@ -17,7 +17,7 @@ inherit native | |||
17 | 17 | ||
18 | # use default config for native build | 18 | # use default config for native build |
19 | do_configure_prepend() { | 19 | do_configure_prepend() { |
20 | ln -s ${S}/../../configs/default ${S}/../../configs/current | 20 | ln -sf ${S}/../../configs/default ${S}/../../configs/current |
21 | } | 21 | } |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |