From 6bc45b2d57f845be8bc76b6071a223660605a58c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 19 Mar 2007 09:49:04 +0000 Subject: #1273 if EXTRAVERSION is set, make sure we respect it --- Rules.mak | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Rules.mak') diff --git a/Rules.mak b/Rules.mak index 3cc699f26..c19908ad1 100644 --- a/Rules.mak +++ b/Rules.mak @@ -78,7 +78,11 @@ export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MAJOR_VERSION := 0 MINOR_VERSION := 9 SUBLEVEL := 29 +EXTRAVERSION := 4 VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL) +ifneq ($(EXTRAVERSION),) +VERSION := $(VERSION).$(EXTRAVERSION) +endif # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. LC_ALL := C export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_ALL -- cgit v1.2.3