From f5543e3bee42b59376b54d88b4e6b7a4ef81e923 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 18 May 2009 16:41:55 +0000 Subject: [PATCH] avoid spurious failure of 'make syntax-check's sc_makefile_check * pkgconfig/Makefile.am (lib%.pc): Add extra quotes to avoid triggering check for use of obsolescent @VAR@ notation. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@2194 fd59a12c-fef9-0310-b244-a6a79926bd2f --- pkgconfig/Makefile.am | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index d43a692a..48897bf5 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -42,10 +42,10 @@ target_PACKAGE = corosync.pc lib%.pc: libtemplate.pc.in Makefile rm -f $@-t $@ sed \ - -e 's#@PREFIX@#$(exec_prefix)#g' \ - -e 's#@LIBDIR@#$(libdir)#g' \ - -e 's#@LIBVERSION@#$(VERSION)#g' \ - -e 's#@LIB@#'$(*:lib%=%)'#g' \ + -e 's#@''PREFIX@#$(exec_prefix)#g' \ + -e 's#@''LIBDIR@#$(libdir)#g' \ + -e 's#@''LIBVERSION@#$(VERSION)#g' \ + -e 's#@''LIB@#'$(*:lib%=%)'#g' \ $< > $@-t chmod a-w $@-t mv $@-t $@ @@ -53,11 +53,11 @@ lib%.pc: libtemplate.pc.in Makefile %: %.in Makefile rm -f $@-t $@ sed \ - -e 's#@PREFIX@#$(exec_prefix)#g' \ - -e 's#@LIBDIR@#$(libdir)#g' \ - -e 's#@LIBVERSION@#$(VERSION)#g' \ - -e 's#@COROLCRSODIR@#$(LCRSODIR)#g' \ - -e 's#@COROSOCKETDIR@#$(SOCKETDIR)#g' \ + -e 's#@''PREFIX@#$(exec_prefix)#g' \ + -e 's#@''LIBDIR@#$(libdir)#g' \ + -e 's#@''LIBVERSION@#$(VERSION)#g' \ + -e 's#@''COROLCRSODIR@#$(LCRSODIR)#g' \ + -e 's#@''COROSOCKETDIR@#$(SOCKETDIR)#g' \ $< > $@-t chmod a-w $@-t mv $@-t $@