diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2005-03-02 22:23:12 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2005-03-02 22:23:12 +0000 |
commit | 8f4a49388b2a6fd7f736a26f5a00faf742587901 (patch) | |
tree | ee4efe24a825d2fb68100d638f31cb1b1ca8c2b6 /x11-libs/lesstif | |
parent | Fixed bug #83880. (diff) | |
download | gentoo-2-8f4a49388b2a6fd7f736a26f5a00faf742587901.tar.gz gentoo-2-8f4a49388b2a6fd7f736a26f5a00faf742587901.tar.bz2 gentoo-2-8f4a49388b2a6fd7f736a26f5a00faf742587901.zip |
Fixed a small, wrong condition.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'x11-libs/lesstif')
-rw-r--r-- | x11-libs/lesstif/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/lesstif/lesstif-0.94.0-r2.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/x11-libs/lesstif/ChangeLog b/x11-libs/lesstif/ChangeLog index 85d21fde50fb..ae9916c045db 100644 --- a/x11-libs/lesstif/ChangeLog +++ b/x11-libs/lesstif/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/lesstif # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/lesstif/ChangeLog,v 1.50 2005/03/02 21:52:29 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/lesstif/ChangeLog,v 1.51 2005/03/02 22:23:12 hansmi Exp $ + + 02 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> + lesstif-0.94.0-r2.ebuild: + Corrected a small, wrong condition for ppc-macos. 02 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> lesstif-0.94.0-r2.ebuild: diff --git a/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild b/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild index c901d8bfacbf..30648fa1c684 100644 --- a/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild +++ b/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild,v 1.3 2005/03/02 21:52:29 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/lesstif/lesstif-0.94.0-r2.ebuild,v 1.4 2005/03/02 22:23:12 hansmi Exp $ inherit libtool flag-o-matic @@ -25,7 +25,7 @@ src_unpack() { src_compile() { use ppc-macos || elibtoolize - if use ppc-macos || macos ; then + if use ppc-macos; then append-ldflags -L/usr/X11R6/lib -lX11 -lXt fi |