diff options
author | Matt Turner <mattst88@gentoo.org> | 2018-04-27 10:41:49 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-04-27 10:41:49 -0700 |
commit | 99129acb97734e3176d22802fdb6921407f6cceb (patch) | |
tree | fa975845973041e7845ad1c265839e8ee221f432 /eclass/xorg-2.eclass | |
parent | kde4-base.eclass: Transition deps to x11-base/xorg-proto (diff) | |
download | gentoo-99129acb97734e3176d22802fdb6921407f6cceb.tar.gz gentoo-99129acb97734e3176d22802fdb6921407f6cceb.tar.bz2 gentoo-99129acb97734e3176d22802fdb6921407f6cceb.zip |
xorg-2.eclass: Add missing required space
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 0329a7aa623a..98a8df0cd3ad 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -218,13 +218,13 @@ if [[ -n "${DRIVER}" ]]; then " fi if [[ -n "${DRIVER}" && ${PN} == xf86-input-* ]]; then - DEPEND+="x11-base/xorg-proto" + DEPEND+=" x11-base/xorg-proto" fi if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then COMMON_DEPEND+=" x11-libs/libpciaccess " - DEPEND+="x11-base/xorg-proto" + DEPEND+=" x11-base/xorg-proto" fi # @ECLASS-VARIABLE: XORG_DOC |