diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-03-29 04:21:40 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-03-29 04:21:40 +0000 |
commit | 8b7d17a4d99918f2ef07501a0d0cfeb86820025f (patch) | |
tree | ecda4e68a7c765316643d456f70bcc39db57eb0f /net-www | |
parent | Add missing dodir before dosym for bug 46049 (Manifest recommit) (diff) | |
download | gentoo-2-8b7d17a4d99918f2ef07501a0d0cfeb86820025f.tar.gz gentoo-2-8b7d17a4d99918f2ef07501a0d0cfeb86820025f.tar.bz2 gentoo-2-8b7d17a4d99918f2ef07501a0d0cfeb86820025f.zip |
Add missing dodir before dosym for bug 46049
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mozilla/ChangeLog | 4 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-1.7_beta-r1.ebuild | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog index 4bffbe80980f..cfb6de913a53 100644 --- a/net-www/mozilla/ChangeLog +++ b/net-www/mozilla/ChangeLog @@ -1,9 +1,9 @@ # ChangeLog for net-www/mozilla # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.158 2004/03/29 04:09:01 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.159 2004/03/29 04:21:40 agriffis Exp $ 28 Mar 2004; Aron Griffis <agriffis@gentoo.org> mozilla-1.7_beta-r1.ebuild: - Workaround dosym inadequacy for /usr/bin/mozilla link, fixes bug 46049 + Add missing dodir before dosym for bug 46049 28 Mar 2004; Aron Griffis <agriffis@gentoo.org> -mozilla-1.5-r1.ebuild, -mozilla-1.6.ebuild: diff --git a/net-www/mozilla/mozilla-1.7_beta-r1.ebuild b/net-www/mozilla/mozilla-1.7_beta-r1.ebuild index e265b341ba4f..d8b5ead453ba 100644 --- a/net-www/mozilla/mozilla-1.7_beta-r1.ebuild +++ b/net-www/mozilla/mozilla-1.7_beta-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.7_beta-r1.ebuild,v 1.3 2004/03/29 04:09:01 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.7_beta-r1.ebuild,v 1.4 2004/03/29 04:21:40 agriffis Exp $ IUSE="java crypt ipv6 gtk2 ssl ldap gnome debug xinerama" # Internal USE flags that I do not really want to advertise ... @@ -450,9 +450,10 @@ src_install() { doins ${x} fi done - cd ${S} - ln -sfn mozilla-launcher ${D}/usr/bin/mozilla + + dodir /usr/bin + dosym mozilla-launcher /usr/bin/mozilla insinto /etc/env.d doins ${FILESDIR}/10mozilla dodoc LEGAL LICENSE README/mozilla/README* |