From 245b626e64d0d439847e92870a9d3b9301bc3e88 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 13 Sep 2020 15:50:46 +0200 Subject: [PATCH] build: fix quoting typo Quoting after the equal sign isn't recognized by the Go toolchain somehow... --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c284d57..2d2e9e1 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ SYSCONFDIR = /etc SHAREDSTATEDIR = /var/lib goflags = $(GOFLAGS) \ - -ldflags="-X main.configPath='$(SYSCONFDIR)/tlstunnel/config' \ - -X main.certDataPath='$(SHAREDSTATEDIR)/tlstunnel'" + -ldflags="-X 'main.configPath=$(SYSCONFDIR)/tlstunnel/config' \ + -X 'main.certDataPath=$(SHAREDSTATEDIR)/tlstunnel'" all: tlstunnel tlstunnel.1