diff --git a/src/build/Common.gmake b/src/build/Common.gmake index e00628961669a4ecd86962ed8494893430e52d86..90b5b44e1f194088c24daafffb9d644fb209e238 100644 --- a/src/build/Common.gmake +++ b/src/build/Common.gmake @@ -109,7 +109,7 @@ # Set VERSION ifndef VERSION - VERSION := 3.14 + VERSION := 3.15 endif # Put local (optional) macro definitions in localdefs.mk @@ -199,7 +199,7 @@ os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_') machine := $(shell if uname -m | egrep -v "(i[3456789]*|x)86" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; fi) machine := $(shell if uname -m | egrep "64" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; else echo $(machine) ; fi) ifeq ($(machine),x86_64) - machine := x64 + machine := x64 endif CFLAGS += -fpic ifeq ($(machine),sparc64)