diff options
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa/0004-gross-hack-to-prevent-from-install-libgl.patch')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa/0004-gross-hack-to-prevent-from-install-libgl.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa/0004-gross-hack-to-prevent-from-install-libgl.patch b/meta/recipes-graphics/mesa/mesa/0004-gross-hack-to-prevent-from-install-libgl.patch new file mode 100644 index 0000000000..cf9dee25ee --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa/0004-gross-hack-to-prevent-from-install-libgl.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | gross hack to prevent from install libgl | ||
2 | |||
3 | This patch is not suitable for upstream. This is only needed for the 8.0.x | ||
4 | branch, master (8.1.x) has a largely different build system (using automake) | ||
5 | and does not need it. It is fully expected to drop the patch with the next bump | ||
6 | to a stable version based on 8.1.x. | ||
7 | |||
8 | Upstream-Status: Inappropriate | ||
9 | |||
10 | --- | ||
11 | src/mesa/Makefile | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/src/mesa/Makefile b/src/mesa/Makefile | ||
15 | index 0e15d61..a0a2cb5 100644 | ||
16 | --- a/src/mesa/Makefile | ||
17 | +++ b/src/mesa/Makefile | ||
18 | @@ -166,7 +166,7 @@ install: default $(DRICORE_INSTALL_TARGET) | ||
19 | else \ | ||
20 | $(MAKE) install-osmesa || exit 1 ; \ | ||
21 | fi ;; \ | ||
22 | - dri) $(MAKE) install-libgl install-dri || exit 1 ;; \ | ||
23 | + dri) $(MAKE) install-dri || exit 1 ;; \ | ||
24 | *) $(MAKE) install-libgl || exit 1 ;; \ | ||
25 | esac ; \ | ||
26 | done | ||
27 | -- | ||
28 | 1.7.10.4 | ||
29 | |||