diff options
author | 2009-05-15 10:36:21 +0000 | |
---|---|---|
committer | 2009-05-15 10:36:21 +0000 | |
commit | 0d08326cb94475f2d2648eda95009a603681ec93 (patch) | |
tree | d65107ed261f2488d29f391019cb85346876eead /xfce-extra | |
parent | Block libusb-0 from being installed concurrently with libusb-compat. (diff) | |
download | gentoo-2-0d08326cb94475f2d2648eda95009a603681ec93.tar.gz gentoo-2-0d08326cb94475f2d2648eda95009a603681ec93.tar.bz2 gentoo-2-0d08326cb94475f2d2648eda95009a603681ec93.zip |
change the py-compile hack so that it works on bsd too where true is not in /bin
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/exo/ChangeLog | 6 | ||||
-rw-r--r-- | xfce-extra/exo/exo-0.3.101.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/xfce-extra/exo/ChangeLog b/xfce-extra/exo/ChangeLog index 8ca35596583a..4c3824e9f86a 100644 --- a/xfce-extra/exo/ChangeLog +++ b/xfce-extra/exo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-extra/exo # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/exo/ChangeLog,v 1.82 2009/04/21 04:32:00 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/exo/ChangeLog,v 1.83 2009/05/15 10:36:21 aballier Exp $ + + 15 May 2009; Alexis Ballier <aballier@gentoo.org> exo-0.3.101.ebuild: + change the py-compile hack so that it works on bsd too where true is not + in /bin *exo-0.3.101 (21 Apr 2009) diff --git a/xfce-extra/exo/exo-0.3.101.ebuild b/xfce-extra/exo/exo-0.3.101.ebuild index c7360202443b..989d80758cbf 100644 --- a/xfce-extra/exo/exo-0.3.101.ebuild +++ b/xfce-extra/exo/exo-0.3.101.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/exo/exo-0.3.101.ebuild,v 1.1 2009/04/21 04:32:00 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/exo/exo-0.3.101.ebuild,v 1.2 2009/05/15 10:36:21 aballier Exp $ EAPI="1" @@ -35,7 +35,8 @@ src_unpack() { xfce4_src_unpack cd "${S}" rm py-compile - ln -s /bin/true py-compile + touch py-compile + chmod +x py-compile } pkg_postinst() { |