From cad584b1a634051e99b888b1b8bc5b9aa31f68bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Wed, 11 May 2011 13:44:35 +0000 Subject: [PATCH] Portable syntax of test condition in install commands. --- org.glite.lb.doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.glite.lb.doc/Makefile b/org.glite.lb.doc/Makefile index 490d011..ca80cb1 100644 --- a/org.glite.lb.doc/Makefile +++ b/org.glite.lb.doc/Makefile @@ -72,7 +72,7 @@ install: ${INSTALL} -m 644 LBTG.pdf ${DESTDIR}${PREFIX}${prefix}/share/doc/${package}-${version} # install DG example sources for p in ${top_srcdir}/examples/*; do \ - if [ "$$p" == "${top_srcdir}/examples/CVS" ]; then continue; fi; \ + if [ "$$p" = "${top_srcdir}/examples/CVS" ]; then continue; fi; \ ${INSTALL} -m 644 "$$p" "${DESTDIR}${PREFIX}${prefix}/share/doc/${package}-${version}/examples"; \ done -- 1.8.2.3