diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-11 12:57:14 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-11 12:57:14 +0000 |
commit | c0b8e714295c3e6c98989e3070ac88aea16e3dd9 (patch) | |
tree | 71fff971de1a42097fc52167bfc8838c539baa42 /eclass/xorg-2.eclass | |
parent | Stable for x86, wrt bug #417909 (diff) | |
download | gentoo-2-c0b8e714295c3e6c98989e3070ac88aea16e3dd9.tar.gz gentoo-2-c0b8e714295c3e6c98989e3070ac88aea16e3dd9.tar.bz2 gentoo-2-c0b8e714295c3e6c98989e3070ac88aea16e3dd9.zip |
Fix not assigned variable. IE bug#416673.
Diffstat (limited to 'eclass/xorg-2.eclass')
-rw-r--r-- | eclass/xorg-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass index d63b23e46e85..48c3d01c441d 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.55 2012/05/09 20:19:10 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.56 2012/06/11 12:57:14 scarabeus Exp $ # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -418,7 +418,7 @@ xorg-2_src_configure() { eqawarn "to preserve namespace." fi - local xorgconfadd=(${CONFIGURE_OPTIONS}) + local xorgconfadd=(${CONFIGURE_OPTIONS} ${XORG_CONFIGURE_OPTIONS}) else local xorgconfadd=("${XORG_CONFIGURE_OPTIONS[@]}") fi |