diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-09-05 22:24:20 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-09-05 22:24:20 +0000 |
commit | 589b860fdfc9d8d6526e97e75d04aefb2e9cb433 (patch) | |
tree | c525c56960e47db9ed2d332c04a7f71f40dfc8c7 /eclass | |
parent | Stable on SPARC. (diff) | |
download | gentoo-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.eclass | 5 |
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 |