mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
mesa: fix mesa version string construction
Now that MESA_MINOR=10, we no longer need the extra '0' in the version string.
This commit is contained in:
parent
f82d984352
commit
988b246c47
3 changed files with 3 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ include $(TOP)/configs/current
|
|||
|
||||
GL_MAJOR = 1
|
||||
GL_MINOR = 5
|
||||
GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
|
||||
GL_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
|
||||
|
||||
|
||||
INCLUDE_DIRS = \
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ include $(TOP)/configs/current
|
|||
|
||||
GLU_MAJOR = 1
|
||||
GLU_MINOR = 3
|
||||
GLU_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
|
||||
GLU_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
|
||||
|
||||
INCDIRS = -I$(TOP)/include -Iinclude -Iinternals -Ilibnurbs/internals -Ilibnurbs/interface -Ilibnurbs/nurbtess
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ include $(TOP)/configs/current
|
|||
|
||||
GL_MAJOR = 1
|
||||
GL_MINOR = 5
|
||||
GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
|
||||
GL_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
|
||||
|
||||
|
||||
HEADERS = \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue