summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2005-09-05 22:24:20 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2005-09-05 22:24:20 +0000
commit589b860fdfc9d8d6526e97e75d04aefb2e9cb433 (patch)
treec525c56960e47db9ed2d332c04a7f71f40dfc8c7 /eclass
parentStable on SPARC. (diff)
downloadgentoo-2-589b860fdfc9d8d6526e97e75d04aefb2e9cb433.tar.gz
gentoo-2-589b860fdfc9d8d6526e97e75d04aefb2e9cb433.tar.bz2
gentoo-2-589b860fdfc9d8d6526e97e75d04aefb2e9cb433.zip
Restore double brackets between ||'d test for --disable-static, and keep then on the same line as if.
Diffstat (limited to 'eclass')
-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