From: František Dvořák Date: Wed, 11 May 2011 13:44:35 +0000 (+0000) Subject: Portable syntax of test condition in install commands. X-Git-Tag: merge_2_1_to_3_0_dst~13 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=cad584b1a634051e99b888b1b8bc5b9aa31f68bb;p=jra1mw.git Portable syntax of test condition in install commands. --- 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