diff options
author | Brian Paul <[email protected]> | 2010-10-18 09:07:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-19 08:59:27 -0600 |
commit | 988b246c471c9c7ece1082682853e3744b702dd2 (patch) | |
tree | 196c0106516b8404f625e32261f410495d917a54 /src/mesa/drivers/x11 | |
parent | f82d9843526e4f121ab1c2c726155e3b7dbe1a01 (diff) |
mesa: fix mesa version string construction
Now that MESA_MINOR=10, we no longer need the extra '0' in the
version string.
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r-- | src/mesa/drivers/x11/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/x11/Makefile b/src/mesa/drivers/x11/Makefile index f759da0a979..f94aae85f2c 100644 --- a/src/mesa/drivers/x11/Makefile +++ b/src/mesa/drivers/x11/Makefile @@ -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 = \ |