blob: 0e562bffd9291390b8892c6b745b27e3da656d36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-Makefile,v 1.1 2019/10/07 10:13:16 bouyer Exp $
don't rely on git to find the version
--- Makefile.orig 2019-10-02 23:49:32.283894050 +0200
+++ Makefile 2019-10-02 23:50:23.808967927 +0200
@@ -53,8 +53,7 @@
endif
-VERSION ?= $(shell git describe --always)
-SPIFFS_VERSION := $(shell git -C spiffs describe --tags || echo "unknown")
+SPIFFS_VERSION := $(VERSION)
BUILD_CONFIG_NAME ?= -generic
OBJ := main.o \
|