Parcourir la source

Merge pull request #299 from kairyu/speed-up-compilation

core: Speed up compilation
tags/v2.9
tmk il y a 8 ans
Parent
révision
e76c8cafea
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2
    1
      tmk_core/common.mk

+ 2
- 1
tmk_core/common.mk Voir le fichier

@@ -81,7 +81,8 @@ ifdef KEYMAP_SECTION_ENABLE
endif

# Version string
OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
VERSION := $(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
OPT_DEFS += -DVERSION=$(VERSION)


# Search Path

Chargement…
Annuler
Enregistrer