diff options
author | 2010-10-23 23:18:31 +0000 | |
---|---|---|
committer | 2010-10-23 23:18:31 +0000 | |
commit | 2f8a94f1e8ad474e127131d6b3e6e1ae86f5d49a (patch) | |
tree | 60d8d798e4a498edf2a274778662ee9e52d82d31 /eclass | |
parent | Drop to ~mips (diff) | |
download | historical-2f8a94f1e8ad474e127131d6b3e6e1ae86f5d49a.tar.gz historical-2f8a94f1e8ad474e127131d6b3e6e1ae86f5d49a.tar.bz2 historical-2f8a94f1e8ad474e127131d6b3e6e1ae86f5d49a.zip |
We do not need the double = here
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/texlive-module.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 4ce688d91338..017d4c044200 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.40 2010/10/23 22:41:44 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.41 2010/10/23 23:18:31 aballier Exp $ # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -100,7 +100,7 @@ RDEPEND="${COMMON_DEPEND}" S="${WORKDIR}" -if [ "${PV#2008}" == "${PV}" ]; then +if [ "${PV#2008}" = "${PV}" ]; then # @FUNCTION: texlive-module_src_unpack # @DESCRIPTION: @@ -146,7 +146,7 @@ texlive-module_add_format() { einfo "Appending to format.${PN}.cnf for $@" [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } - if [ "${mode}" == "disabled" ]; then + if [ "${mode}" = "disabled" ]; then printf "#! " >> texmf/fmtutil/format.${PN}.cnf fi [ -z "${patterns}" ] && patterns="-" |