From 30814af63cfaecd5c371e82e0bb484802e5dff67 Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Thu, 19 Mar 2015 09:21:25 +0100 Subject: Correct escaping for prefix in pkgconf file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index baec294..41ca53e 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ INSTALL?= cp -a $(PKGCONFNAME): hiredis.h @echo "Generating $@ for pkgconfig..." @echo prefix=$(PREFIX) > $@ - @echo exec_prefix=$${prefix} >> $@ + @echo exec_prefix=\$${prefix} >> $@ @echo libdir=$(PREFIX)/$(LIBRARY_PATH) >> $@ @echo includedir=$(PREFIX)/$(INCLUDE_PATH) >> $@ @echo >> $@ -- cgit v1.2.3