diff options
author | Christian Birchinger <joker@gentoo.org> | 2009-08-03 05:57:59 +0000 |
---|---|---|
committer | Christian Birchinger <joker@gentoo.org> | 2009-08-03 05:57:59 +0000 |
commit | 30f5f339630f6710dfd035dbf1f9e51392d45d9a (patch) | |
tree | c613ca01a94a948596cfab93d372b8dc948f518b /x11-misc | |
parent | Fix dependencies. (diff) | |
download | gentoo-2-30f5f339630f6710dfd035dbf1f9e51392d45d9a.tar.gz gentoo-2-30f5f339630f6710dfd035dbf1f9e51392d45d9a.tar.bz2 gentoo-2-30f5f339630f6710dfd035dbf1f9e51392d45d9a.zip |
Change the linker argument order to LDFLAGS, objects, libraries.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xdotool/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/xdotool/xdotool-20090609.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/x11-misc/xdotool/ChangeLog b/x11-misc/xdotool/ChangeLog index 5f90477160da..c403303b7d57 100644 --- a/x11-misc/xdotool/ChangeLog +++ b/x11-misc/xdotool/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/xdotool # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.2 2009/07/15 15:02:46 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.3 2009/08/03 05:57:59 joker Exp $ + + 03 Aug 2009; Christian Birchinger <joker@gentoo.org> + xdotool-20090609.ebuild: + Change the linker argument order to LDFLAGS, objects, libraries. 15 Jul 2009; Christian Birchinger <joker@gentoo.org> xdotool-20090609.ebuild: diff --git a/x11-misc/xdotool/xdotool-20090609.ebuild b/x11-misc/xdotool/xdotool-20090609.ebuild index 2eac8d0875c4..375f08697e4b 100644 --- a/x11-misc/xdotool/xdotool-20090609.ebuild +++ b/x11-misc/xdotool/xdotool-20090609.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/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.2 2009/07/15 15:02:46 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.3 2009/08/03 05:57:59 joker Exp $ EAPI=2 @@ -26,8 +26,8 @@ src_prepare() { -e "s:^LIBS=.*:LIBS=$(pkg-config --libs x11 xtst):" \ -e "s:^INC=.*:INC=$(pkg-config --cflags x11 xtst):" \ -e "s:\$(CC):$(tc-getCC):" \ - -e "s:\$(LDFLAGS): \$(LIBS) \$(LDFLAGS):" \ -e 's:LDFLAGS+=$(LIBS)::' \ + -e 's:-o $@:$(LIBS) -o $@:' \ -e "s:\$(CFLAGS):\$(INC) \$(CFLAGS):" \ Makefile \ || die "sed Makefile failed." |