summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2005-09-05 22:24:20 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2005-09-05 22:24:20 +0000
commitbeba2863659936010ec7fd59adba158fbd134dc9 (patch)
tree29d02e032c93f5c5fdd201a7702283351fecde0c
parentStable on SPARC. (diff)
downloadhistorical-beba2863659936010ec7fd59adba158fbd134dc9.tar.gz
historical-beba2863659936010ec7fd59adba158fbd134dc9.tar.bz2
historical-beba2863659936010ec7fd59adba158fbd134dc9.zip
Restore double brackets between ||'d test for --disable-static, and keep then on the same line as if.
-rw-r--r--eclass/x-modular.eclass5
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass
index ae125b69cd50..d2cbc5c0fc68 100644
--- a/eclass/x-modular.eclass
+++ b/eclass/x-modular.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.11 2005/09/05 20:36:30 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.12 2005/09/05 22:24:20 spyderous Exp $
#
# Author: Donnie Berkholz <spyderous@gentoo.org>
#
@@ -45,8 +45,7 @@ if [[ "${PN/#font}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then
fi
# If we're a driver package
-if [[ "${PN/#xf86-video}" != "${PN}" || "${PN/#xf86-input}" != "${PN}" ]]
-then
+if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then
# Don't build static driver modules
DRIVER_OPTIONS="--disable-static"
fi