1
1
Fork 0
mirror of https://git.sr.ht/~emersion/tlstunnel synced 2024-05-24 05:56:07 +02:00

build: fix quoting typo

Quoting after the equal sign isn't recognized by the Go toolchain
somehow...
This commit is contained in:
Simon Ser 2020-09-13 15:50:46 +02:00
parent b19939408c
commit 245b626e64
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

View File

@ -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