diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-09-01 07:11:19 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-09-01 07:11:19 +0000 |
commit | 92749093b355a448e912ea0532f4cbb43be1b985 (patch) | |
tree | 318b8c90fc51ca2abc38aaab399e04530ce0a2c9 /games-misc/wumpus | |
parent | Version bump (diff) | |
download | gentoo-2-92749093b355a448e912ea0532f4cbb43be1b985.tar.gz gentoo-2-92749093b355a448e912ea0532f4cbb43be1b985.tar.bz2 gentoo-2-92749093b355a448e912ea0532f4cbb43be1b985.zip |
Respect LDFLAGS. Bug #335469
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'games-misc/wumpus')
-rw-r--r-- | games-misc/wumpus/ChangeLog | 7 | ||||
-rw-r--r-- | games-misc/wumpus/wumpus-1.4.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/games-misc/wumpus/ChangeLog b/games-misc/wumpus/ChangeLog index 0d6e2c48152c..c45b5ef71b00 100644 --- a/games-misc/wumpus/ChangeLog +++ b/games-misc/wumpus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-misc/wumpus -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/ChangeLog,v 1.12 2008/02/05 21:01:22 grobian Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/ChangeLog,v 1.13 2010/09/01 07:11:19 tupone Exp $ + + 01 Sep 2010; Alfredo Tupone <tupone@gentoo.org> wumpus-1.4.ebuild: + Respect LDFLAGS. Bug #335469 by flameeyes@gentoo.org 05 Feb 2008; Fabian Groffen <grobian@gentoo.org> wumpus-1.4.ebuild: Dropped ppc-macos keyword, see you in prefix diff --git a/games-misc/wumpus/wumpus-1.4.ebuild b/games-misc/wumpus/wumpus-1.4.ebuild index e1990b7908cf..1a8823f493f1 100644 --- a/games-misc/wumpus/wumpus-1.4.ebuild +++ b/games-misc/wumpus/wumpus-1.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/wumpus-1.4.ebuild,v 1.13 2008/02/05 21:01:22 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/wumpus-1.4.ebuild,v 1.14 2010/09/01 07:11:19 tupone Exp $ inherit toolchain-funcs games @@ -30,7 +30,7 @@ src_unpack() { src_compile() { touch pathnames.h [ -z "${PAGER}" ] && PAGER=/usr/bin/less - $(tc-getCC) -Dlint -D_PATH_PAGER=\"${PAGER}\" \ + $(tc-getCC) ${LDFLAGS} -Dlint -D_PATH_PAGER=\"${PAGER}\" \ -D_PATH_WUMPINFO=\""${GAMES_DATADIR}"/${PN}/wump.info\" ${CFLAGS} \ -o wump wump.c || die "compile failed" } |