From 34a884e1cfa8f4f542db7777085f2024b398eea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Fri, 29 May 2020 00:15:18 +0200 Subject: [PATCH] fix improper escaping --- makefiles/variables.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefiles/variables.mk b/makefiles/variables.mk index 4aea90c..bfb87a3 100644 --- a/makefiles/variables.mk +++ b/makefiles/variables.mk @@ -33,7 +33,7 @@ endif # avoid a "libpcre.so.3: cannot open shared object file: No such file or directory" message, where possible ifneq ($(OS), Windows_NT) - NIM_PARAMS := $(NIM_PARAMS) -d:usePcreHeader --passL:\"-lpcre\" + NIM_PARAMS := $(NIM_PARAMS) -d:usePcreHeader --passL:"-lpcre" endif # guess who does parsing before variable expansion