Browse Source

dont force a . before EXTRAVERSION so we can be a little more flexible with versioning

Mike Frysinger 17 years ago
parent
commit
76a888bead
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Rules.mak

+ 1 - 1
Rules.mak

@@ -81,7 +81,7 @@ SUBLEVEL      := 29
 EXTRAVERSION  :=
 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
 ifneq ($(EXTRAVERSION),)
-VERSION       := $(VERSION).$(EXTRAVERSION)
+VERSION       := $(VERSION)$(EXTRAVERSION)
 endif
 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
 LC_ALL := C