diff options
author | Brian Paul <brianp@vmware.com> | 2009-05-01 09:19:59 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-05-01 09:19:59 -0600 |
commit | 8a488b1be720247339f5c86fea5d2bff3d0fe084 (patch) | |
tree | 13e55cd4e19e0a3ad74cc8711d1c83578543a3db | |
parent | 3eafd25aa3b8d7680d3a0ac4869681e951484371 (diff) |
mesa: remove -devel suffix from version
-rw-r--r-- | src/mesa/main/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index f5bf6e2c85..ba027465d4 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -31,7 +31,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 5 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "7.5-devel" +#define MESA_VERSION_STRING "7.5" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |