mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-19 02:29:31 -05:00
BUILD: fix VERDATE exclusion regex
A backslash was missing. It used to work well with GNU grep anyway but better fix it.
This commit is contained in:
parent
e6300be8f8
commit
f1ed327a7a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -359,7 +359,7 @@ ifeq ($(SUBVERS),)
|
|||
SUBVERS := $(shell (grep -v '\$$Format' SUBVERS 2>/dev/null || touch SUBVERS) | head -n 1)
|
||||
endif
|
||||
ifeq ($(VERDATE),)
|
||||
VERDATE := $(shell (grep -v '^$$Format' VERDATE 2>/dev/null || touch VERDATE) | head -n 1 | cut -f1 -d' ' | tr '-' '/')
|
||||
VERDATE := $(shell (grep -v '^\$$Format' VERDATE 2>/dev/null || touch VERDATE) | head -n 1 | cut -f1 -d' ' | tr '-' '/')
|
||||
endif
|
||||
|
||||
#### Build options
|
||||
|
|
|
|||
Loading…
Reference in a new issue