diff options
author | Zack Welch <zwelch@gentoo.org> | 2003-03-27 01:04:28 +0000 |
---|---|---|
committer | Zack Welch <zwelch@gentoo.org> | 2003-03-27 01:04:28 +0000 |
commit | 9f8a9f9a6f4f6f933768f2641ec8ed34d17db0db (patch) | |
tree | 8411efce6c93346e13fc3c3da5d3169765c1c475 /sys-apps/man | |
parent | licence format change (diff) | |
download | historical-9f8a9f9a6f4f6f933768f2641ec8ed34d17db0db.tar.gz historical-9f8a9f9a6f4f6f933768f2641ec8ed34d17db0db.tar.bz2 historical-9f8a9f9a6f4f6f933768f2641ec8ed34d17db0db.zip |
fix distcc compiles by using CC properly (bug 18242)
Diffstat (limited to 'sys-apps/man')
-rw-r--r-- | sys-apps/man/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/man/man-1.5l-r1.ebuild | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/sys-apps/man/ChangeLog b/sys-apps/man/ChangeLog index c3b667d115bc..64944efccfdb 100644 --- a/sys-apps/man/ChangeLog +++ b/sys-apps/man/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for sys-apps/man # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.21 2003/03/19 22:24:28 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.22 2003/03/27 01:04:28 zwelch Exp $ *man-1.5l-r1 (19 Mar 2003) + 26 Mar 2003; Zach Welch <zwelch@gentoo.org> man-1.5l-r1.ebuild: + fix distcc compiles by using CC properly (bug 18242) + 19 Mar 2003; root <root@gentoo.org> man-1.5l-r1.ebuild, files/man-1.5l-redhat-patches.patch: corrected patch. closes #17801. diff --git a/sys-apps/man/man-1.5l-r1.ebuild b/sys-apps/man/man-1.5l-r1.ebuild index 9414230f9a32..a8568de7b3f4 100644 --- a/sys-apps/man/man-1.5l-r1.ebuild +++ b/sys-apps/man/man-1.5l-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5l-r1.ebuild,v 1.1 2003/03/19 22:24:28 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5l-r1.ebuild,v 1.2 2003/03/27 01:04:28 zwelch Exp $ IUSE="" @@ -37,7 +37,6 @@ src_unpack() { cp Makefile.in Makefile.in.orig sed -e '/inst.sh/d' \ -e '/^CC =/c\' \ - -e "CC = gcc" \ -e '/^CFLAGS =/c\' \ -e "CFLAGS = ${CFLAGS}" \ Makefile.in.orig > Makefile.in @@ -45,7 +44,7 @@ src_unpack() { cd ${S}/gencat cp Makefile Makefile.orig - sed -e "s:cc -o:gcc -o:" Makefile.orig > Makefile + sed -e 's:cc -o:$(CC) -o:' Makefile.orig > Makefile cd ${S} # Fix search order in man.conf so that system installed manpages @@ -80,7 +79,7 @@ src_compile() { +sgid +fhs \ ${myconf} || die - make || die + make CC="${CC}" || die } src_install() { |