diff options
author | 2005-09-05 22:24:20 +0000 | |
---|---|---|
committer | 2005-09-05 22:24:20 +0000 | |
commit | beba2863659936010ec7fd59adba158fbd134dc9 (patch) | |
tree | 29d02e032c93f5c5fdd201a7702283351fecde0c | |
parent | Stable on SPARC. (diff) | |
download | historical-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.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 |