diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-04-11 17:00:52 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-04-11 17:00:52 +0000 |
commit | 3a92dd7a593e03cf9bdadc1f22f922f7b0af66aa (patch) | |
tree | 353c9d4c6dd9b8d7d439746d34d6d523df06aff2 /net-fs/mount-cifs | |
parent | ia64/ppc/ppc64 stable wrt #358611 (diff) | |
download | gentoo-2-3a92dd7a593e03cf9bdadc1f22f922f7b0af66aa.tar.gz gentoo-2-3a92dd7a593e03cf9bdadc1f22f922f7b0af66aa.tar.bz2 gentoo-2-3a92dd7a593e03cf9bdadc1f22f922f7b0af66aa.zip |
QA: Respect LDFLAGS, added missing die
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/mount-cifs')
-rw-r--r-- | net-fs/mount-cifs/ChangeLog | 7 | ||||
-rw-r--r-- | net-fs/mount-cifs/mount-cifs-3.0.30.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-fs/mount-cifs/ChangeLog b/net-fs/mount-cifs/ChangeLog index 61aa0aec5cd4..f801e04bf51d 100644 --- a/net-fs/mount-cifs/ChangeLog +++ b/net-fs/mount-cifs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/mount-cifs -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/mount-cifs/ChangeLog,v 1.21 2009/03/06 04:08:57 kumba Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/mount-cifs/ChangeLog,v 1.22 2011/04/11 17:00:52 angelos Exp $ + + 11 Apr 2011; Christoph Mende <angelos@gentoo.org> mount-cifs-3.0.30.ebuild: + QA: Respect LDFLAGS, added missing die 06 Mar 2009; Joshua Kinard <kumba@gentoo.org> mount-cifs-3.0.30.ebuild: Added ~mips to KEYWORDS diff --git a/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild b/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild index 5319075a602d..48f98d21b9a8 100644 --- a/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild +++ b/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild,v 1.8 2009/03/06 04:08:57 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/mount-cifs/mount-cifs-3.0.30.ebuild,v 1.9 2011/04/11 17:00:52 angelos Exp $ inherit toolchain-funcs @@ -17,12 +17,12 @@ RDEPEND="${DEPEND}" src_compile() { cd "${S}/source/client" - $(tc-getCC) ${CFLAGS} mount.cifs.c -o mount.cifs || die "make mount.cifs failed" - $(tc-getCC) ${CFLAGS} umount.cifs.c -o umount.cifs || die "make umount.cifs failed" + $(tc-getCC) ${CFLAGS} ${LDFLAGS} mount.cifs.c -o mount.cifs || die "make mount.cifs failed" + $(tc-getCC) ${CFLAGS} ${LDFLAGS} umount.cifs.c -o umount.cifs || die "make umount.cifs failed" } src_install() { - dobin source/client/{mount,umount}.cifs + dobin source/client/{mount,umount}.cifs || die dosym /usr/bin/mount.cifs /sbin/mount.cifs docinto html |