Correct escaping for prefix in pkgconf file

This commit is contained in:
Jan-Erik Rediger 2015-03-19 09:21:25 +01:00
parent 5c12fa4ce4
commit 30814af63c

View File

@ -150,7 +150,7 @@ INSTALL?= cp -a
$(PKGCONFNAME): hiredis.h $(PKGCONFNAME): hiredis.h
@echo "Generating $@ for pkgconfig..." @echo "Generating $@ for pkgconfig..."
@echo prefix=$(PREFIX) > $@ @echo prefix=$(PREFIX) > $@
@echo exec_prefix=$${prefix} >> $@ @echo exec_prefix=\$${prefix} >> $@
@echo libdir=$(PREFIX)/$(LIBRARY_PATH) >> $@ @echo libdir=$(PREFIX)/$(LIBRARY_PATH) >> $@
@echo includedir=$(PREFIX)/$(INCLUDE_PATH) >> $@ @echo includedir=$(PREFIX)/$(INCLUDE_PATH) >> $@
@echo >> $@ @echo >> $@