From: Emil Velikov Date: Fri, 27 Mar 2015 14:18:24 +0000 (+0000) Subject: android: use := operator for assigning MESA_VERSION X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba3bc1eea2f41e06a6c4300d4bc2b3547dbcaaec;p=mesa.git android: use := operator for assigning MESA_VERSION Signed-off-by: Emil Velikov --- diff --git a/Android.common.mk b/Android.common.mk index 3e6d4c39891..e34f206609b 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -33,7 +33,7 @@ endif LOCAL_C_INCLUDES += \ $(MESA_TOP)/include -MESA_VERSION=$(shell cat $(MESA_TOP)/VERSION) +MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION) # define ANDROID_VERSION (e.g., 4.0.x => 0x0400) LOCAL_CFLAGS += \ -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \