mirror of
git://slackware.nl/current.git
synced 2025-01-13 08:01:53 +01:00
29 lines
770 B
Diff
29 lines
770 B
Diff
|
From 6f52473dac08c44b081b792874b4ce73122096da Mon Sep 17 00:00:00 2001
|
||
|
From: Eric Engestrom <eric@engestrom.ch>
|
||
|
Date: Mon, 30 Sep 2019 16:06:42 +0100
|
||
|
Subject: [PATCH] include: install GL headers when GL is enabled
|
||
|
|
||
|
A typo made it depend on EGL instead.
|
||
|
|
||
|
Fixes: ab9b5fcc3bf90064418f ("Install the GL/GLES/GLX/EGL header files.")
|
||
|
---
|
||
|
include/Makefile.am | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/include/Makefile.am b/include/Makefile.am
|
||
|
index 1e33d2d..3d81d17 100644
|
||
|
--- a/include/Makefile.am
|
||
|
+++ b/include/Makefile.am
|
||
|
@@ -39,7 +39,7 @@ EGL_HEADER_FILES = \
|
||
|
EGL/eglext.h \
|
||
|
EGL/eglplatform.h
|
||
|
|
||
|
-if ENABLE_EGL_HEADERS
|
||
|
+if ENABLE_GL_HEADERS
|
||
|
nobase_include_HEADERS += $(GL_HEADER_FILES)
|
||
|
else
|
||
|
noinst_HEADERS += $(GL_HEADER_FILES)
|
||
|
--
|
||
|
2.22.0
|
||
|
|