summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-07-11 06:57:37 +0000
committerMichał Górny <mgorny@gentoo.org>2013-07-11 06:57:37 +0000
commite7e134e11c42a7157bcc77d5354cde0131a458c0 (patch)
tree661c0989b832619f5a0376f2ab2c6db6ff1b9084 /eclass
parentAdd multilib_is_native_abi helper. (diff)
downloadgentoo-2-e7e134e11c42a7157bcc77d5354cde0131a458c0.tar.gz
gentoo-2-e7e134e11c42a7157bcc77d5354cde0131a458c0.tar.bz2
gentoo-2-e7e134e11c42a7157bcc77d5354cde0131a458c0.zip
Fix typo in compileall call.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/python-utils-r1.eclass4
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 03b3a50da64e..bed74d9b33c1 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.875 2013/07/11 06:57:18 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.876 2013/07/11 06:57:37 mgorny Exp $
+
+ 11 Jul 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass:
+ Fix typo in compileall call.
11 Jul 2013; Michał Górny <mgorny@gentoo.org> multilib-build.eclass:
Add multilib_is_native_abi helper.
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 9d0858ab71b5..918bf0024f50 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.27 2013/06/07 01:11:31 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.28 2013/07/11 06:57:37 mgorny Exp $
# @ECLASS: python-utils-r1
# @MAINTAINER:
@@ -630,7 +630,7 @@ python_optimize() {
"${PYTHON}" -OO -m compileall -q -f -d "${instpath}" "${d}"
;;
*)
- "${PYTHON}" -m compileall -q -f -d "${instpath}" "${@}"
+ "${PYTHON}" -m compileall -q -f -d "${instpath}" "${d}"
;;
esac
done