From f0c211c00a79c703df2f906cb749f72d97efba25 Mon Sep 17 00:00:00 2001 From: militarpancho Date: Wed, 4 Oct 2017 15:37:05 +0200 Subject: [PATCH 1/3] PYVERSION changed --- python.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.mk b/python.mk index f14cc7a..2ad9559 100644 --- a/python.mk +++ b/python.mk @@ -1,4 +1,4 @@ -PYVERSIONS ?= 2.7 +PYVERSIONS ?= 3.5 PYMAIN ?= $(firstword $(PYVERSIONS)) TARNAME ?= $(NAME)-$(VERSION).tar.gz VERSIONFILE ?= $(NAME)/VERSION From 42224e343cc662b8f70149da37957c0d1374a531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Thu, 5 Oct 2017 11:19:02 +0200 Subject: [PATCH 2/3] Updated makefiles from meaningcloud Version was "unknown" due to a bug --- base.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base.mk b/base.mk index f67f682..a4d94d7 100644 --- a/base.mk +++ b/base.mk @@ -2,8 +2,8 @@ export NAME ?= $(shell basename $(CURDIR)) VERSION ?= $(shell git describe --tags --dirty 2>/dev/null) -ifeq ($(wildcard $VERSION),) - VERSION:=unknown +ifeq ($(VERSION),) + VERSION:="unknown" endif # Get the location of this makefile. From 919c4a07a26517e0354fc3343ee7d52891dda105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Thu, 5 Oct 2017 13:25:33 +0000 Subject: [PATCH 3/3] Update base.mk --- base.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.mk b/base.mk index a4d94d7..4371ebe 100644 --- a/base.mk +++ b/base.mk @@ -3,7 +3,7 @@ NAME ?= $(shell basename $(CURDIR)) VERSION ?= $(shell git describe --tags --dirty 2>/dev/null) ifeq ($(VERSION),) - VERSION:="unknown" + VERSION:=unknown endif # Get the location of this makefile.