blob: 26af2fcba6c828c2b5b1228d5e61d6ea6aa2c1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From 031ea3c21cdc440e7fabc0ebfd80b882cfe9cfb1 Mon Sep 17 00:00:00 2001
From: Matt Coffin <mcoffin13@gmail.com>
Date: Sat, 18 Jan 2020 02:21:19 -0700
Subject: [PATCH] makefile: allow for version override
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index c95a171..7718659 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
#
# Version
#
-VERSION=$(shell git describe --tags --dirty)
+VERSION ?= $(shell git describe --tags --dirty)
WXVERSION=3.0
#
--
2.25.0
|