build: fix quoting typo
Quoting after the equal sign isn't recognized by the Go toolchain somehow...
This commit is contained in:
parent
b19939408c
commit
245b626e64
4
Makefile
4
Makefile
|
@ -12,8 +12,8 @@ SYSCONFDIR = /etc
|
||||||
SHAREDSTATEDIR = /var/lib
|
SHAREDSTATEDIR = /var/lib
|
||||||
|
|
||||||
goflags = $(GOFLAGS) \
|
goflags = $(GOFLAGS) \
|
||||||
-ldflags="-X main.configPath='$(SYSCONFDIR)/tlstunnel/config' \
|
-ldflags="-X 'main.configPath=$(SYSCONFDIR)/tlstunnel/config' \
|
||||||
-X main.certDataPath='$(SHAREDSTATEDIR)/tlstunnel'"
|
-X 'main.certDataPath=$(SHAREDSTATEDIR)/tlstunnel'"
|
||||||
|
|
||||||
all: tlstunnel tlstunnel.1
|
all: tlstunnel tlstunnel.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue