diff options
author | Brian Evans <grknight@gentoo.org> | 2015-11-07 22:16:59 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-11-07 22:16:59 -0500 |
commit | 6f3c1455a6bbb0402230f44786ed37a552b99490 (patch) | |
tree | f1e771192d6d374759b01b6ce04eee60c04bfd1e | |
parent | 66a72bd65420d1e104e7611b0a5ed6b80d73bc02 (diff) | |
download | gentoo-6f3c1455a6bbb0402230f44786ed37a552b99490.tar.gz gentoo-6f3c1455a6bbb0402230f44786ed37a552b99490.tar.xz |
net-wireless/multimode: Fix syntax error where PYTHON_COMPAT was not an array
Package-Manager: portage-2.2.20.1
-rw-r--r-- | net-wireless/multimode/multimode-1.00-r2.ebuild | 4 | ||||
-rw-r--r-- | net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild | 4 | ||||
-rw-r--r-- | net-wireless/multimode/multimode-9999.ebuild | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/net-wireless/multimode/multimode-1.00-r2.ebuild b/net-wireless/multimode/multimode-1.00-r2.ebuild index 13df49f4936..30706949b42 100644 --- a/net-wireless/multimode/multimode-1.00-r2.ebuild +++ b/net-wireless/multimode/multimode-1.00-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT="python2_7" +PYTHON_COMPAT=( python2_7 ) inherit python-single-r1 diff --git a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild index 97a8fbd06b3..7cf7761b48a 100644 --- a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild +++ b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT="python2_7" +PYTHON_COMPAT=( python2_7 ) inherit python-single-r1 diff --git a/net-wireless/multimode/multimode-9999.ebuild b/net-wireless/multimode/multimode-9999.ebuild index 26b61e05aa7..61c42ca7838 100644 --- a/net-wireless/multimode/multimode-9999.ebuild +++ b/net-wireless/multimode/multimode-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT="python2_7" +PYTHON_COMPAT=( python2_7 ) inherit python-single-r1 |