summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2016-08-08 10:27:15 +0200
committerFred Sundvik <fsundvik@gmail.com>2016-08-20 02:56:33 +0200
commitdd8c1a7659fec4fe3211682864fc4c50d4a61f85 (patch)
tree8f988ca3d69a4006d848688882fc13cf7b6779af
parent60c6e79ecb032e9726809a295ab3e0011e6b2fb4 (diff)
downloadqmk_firmware-dd8c1a7659fec4fe3211682864fc4c50d4a61f85.tar.gz
qmk_firmware-dd8c1a7659fec4fe3211682864fc4c50d4a61f85.tar.xz
Don't add VERSION as a define
To avoid full recompilation when the git commit hash changes.
-rw-r--r--tmk_core/common.mk3
-rw-r--r--tmk_core/common/command.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk
index aa05b9491..21b894e2b 100644
--- a/tmk_core/common.mk
+++ b/tmk_core/common.mk
@@ -106,9 +106,6 @@ $(error MASTER does not have a valid value(left/right))
endif
-# Version string
-OPT_DEFS += -DVERSION=$(GIT_VERSION)
-
# Bootloader address
ifdef STM32_BOOTLOADER_ADDRESS
OPT_DEFS += -DSTM32_BOOTLOADER_ADDRESS=$(STM32_BOOTLOADER_ADDRESS)
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 084c9fe15..476fc6fe3 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -34,6 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "command.h"
#include "backlight.h"
#include "quantum.h"
+#include "version.h"
#ifdef MOUSEKEY_ENABLE
#include "mousekey.h"
@@ -180,7 +181,7 @@ static void print_version(void)
print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") "
"PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") "
"VER: " STR(DEVICE_VER) "\n");
- print("BUILD: " STR(VERSION) " (" __TIME__ " " __DATE__ ")\n");
+ print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n");
/* build options */
print("OPTIONS:"