diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-19 16:36:01 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-19 16:36:01 +0000 |
commit | fb883fb01cc656dc716e136ff7ecf7e87ffccd8c (patch) | |
tree | c171a6281a48b256440dbc947c4089af7acfe002 /net-libs | |
parent | Fixed error in gdome-config script. Bug 53704. (Manifest recommit) (diff) | |
download | gentoo-2-fb883fb01cc656dc716e136ff7ecf7e87ffccd8c.tar.gz gentoo-2-fb883fb01cc656dc716e136ff7ecf7e87ffccd8c.tar.bz2 gentoo-2-fb883fb01cc656dc716e136ff7ecf7e87ffccd8c.zip |
Using toolchain-funcs for the rest of the toolchain commands now, too.
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libhttpd-persistent/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/net-libs/libhttpd-persistent/ChangeLog b/net-libs/libhttpd-persistent/ChangeLog index d7750bb392f8..ec61ed635d00 100644 --- a/net-libs/libhttpd-persistent/ChangeLog +++ b/net-libs/libhttpd-persistent/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libhttpd-persistent # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.13 2004/10/19 07:40:28 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.14 2004/10/19 16:36:01 eradicator Exp $ + + 19 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org> + libhttpd-persistent-1.3p-r8.ebuild: + Using toolchain-funcs for the rest of the toolchain commands now, too. 19 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org> -libhttpd-persistent-1.3p-r6.ebuild, -libhttpd-persistent-1.3p-r7.ebuild: diff --git a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild index f5d7ebd8709c..b2d4bdfcaf56 100644 --- a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild +++ b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild,v 1.3 2004/10/19 07:40:28 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild,v 1.4 2004/10/19 16:36:01 eradicator Exp $ IUSE="" @@ -36,14 +36,10 @@ src_compile() { $(tc-getCXX) ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE} -o ${FILE//.c/.lo} || die done -# echo $(tc-getAR) rc libhttpd-persistent.a ${OFILES} || die -# $(tc-getAR) rc libhttpd-persistent.a ${OFILES} || die -# echo $(tc-getRANLIB) libhttpd-persistent.a || die -# $(tc-getRANLIB) libhttpd-persistent.a || die - echo ar rc libhttpd-persistent.a ${OFILES} || die - ar rc libhttpd-persistent.a ${OFILES} || die - echo ranlib libhttpd-persistent.a || die - ranlib libhttpd-persistent.a || die + echo $(tc-getAR) rc libhttpd-persistent.a ${OFILES} || die + $(tc-getAR) rc libhttpd-persistent.a ${OFILES} || die + echo $(tc-getRANLIB) libhttpd-persistent.a || die + $(tc-getRANLIB) libhttpd-persistent.a || die echo $(tc-getCXX) -shared -Wl,-shared,-soname,libhttpd-persistent.so \ ${LOFILES} -o libhttpd-persistent.so || die |