diff options
author | 2001-12-17 16:53:48 +0000 | |
---|---|---|
committer | 2001-12-17 16:53:48 +0000 | |
commit | 91cecc2704dce0c5038d2848cf69e60be1aae6b6 (patch) | |
tree | f552029bd772f4c8e3e51a7d279bb10752ce6321 /gnome-base/gnome-print | |
parent | new version (diff) | |
download | historical-91cecc2704dce0c5038d2848cf69e60be1aae6b6.tar.gz historical-91cecc2704dce0c5038d2848cf69e60be1aae6b6.tar.bz2 historical-91cecc2704dce0c5038d2848cf69e60be1aae6b6.zip |
fix write outside tmp
Diffstat (limited to 'gnome-base/gnome-print')
-rw-r--r-- | gnome-base/gnome-print/gnome-print-0.34.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnome-base/gnome-print/gnome-print-0.34.ebuild b/gnome-base/gnome-print/gnome-print-0.34.ebuild index acec3a714774..679d358fe848 100644 --- a/gnome-base/gnome-print/gnome-print-0.34.ebuild +++ b/gnome-base/gnome-print/gnome-print-0.34.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-print/gnome-print-0.34.ebuild,v 1.1 2001/12/12 17:44:49 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-print/gnome-print-0.34.ebuild,v 1.2 2001/12/17 16:53:48 azarah Exp $ S=${WORKDIR}/${P} @@ -30,7 +30,9 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die + make DESTDIR=${D} \ + sysconfdir=${D}/etc \ + install || die dodoc AUTHORS COPYING ChangeLog NEWS README } |