diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2013-07-25 23:45:45 +0100 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2013-07-29 13:39:29 -0700 |
commit | 488b3ed6f40df4608f7d02758ffd4ab7070c782e (patch) | |
tree | 2cabb1b1c1da2dd0ef8a25fbb7105d8a44c6987d /Android.common.mk | |
parent | efb566dff22933517630537c2bfb8da34018ad8c (diff) | |
download | mesa-488b3ed6f40df4608f7d02758ffd4ab7070c782e.tar.gz |
build: unify mesa version by using a VERSION file
Rather than having to keep track of all the build systems and their respecitve
definition of the mesa version, use a single top file VERSION. Every build
system is responsible for reading/parsing the file and using it
v2:
* remove useless bulletpoint from the documentation, suggested by Matt
* "Androing is Linux. Use '/' in stead of '\'", spotted by Chad V
* use cleaner code to get the version in scons, suggested by Chad V
v3:
* ensure leading and trailing whitespace characters are stripped while parsing
* android: handle GNU shell commands approapriately
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.common.mk b/Android.common.mk index dd37104b08e..3e6d4c39891 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -33,9 +33,10 @@ endif LOCAL_C_INCLUDES += \ $(MESA_TOP)/include +MESA_VERSION=$(shell cat $(MESA_TOP)/VERSION) # define ANDROID_VERSION (e.g., 4.0.x => 0x0400) LOCAL_CFLAGS += \ - -DPACKAGE_VERSION=\"9.3.0-devel\" \ + -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \ -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\" \ -DANDROID_VERSION=0x0$(MESA_ANDROID_MAJOR_VERSION)0$(MESA_ANDROID_MINOR_VERSION) |