diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-12-05 09:47:15 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-12-05 09:47:15 +0000 |
commit | 848ff35e5c63628dcf8ec01898416d8b3aa0a521 (patch) | |
tree | 78e36a7c6ada643698ee6b26a1f86fa2383799ba /eclass/ruby-gnome2.eclass | |
parent | New ebuild. Closing bug #31501. (diff) | |
download | historical-848ff35e5c63628dcf8ec01898416d8b3aa0a521.tar.gz historical-848ff35e5c63628dcf8ec01898416d8b3aa0a521.tar.bz2 historical-848ff35e5c63628dcf8ec01898416d8b3aa0a521.zip |
dodir sitearchdir in case it isn't going to be created during src_install
Diffstat (limited to 'eclass/ruby-gnome2.eclass')
-rw-r--r-- | eclass/ruby-gnome2.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/ruby-gnome2.eclass b/eclass/ruby-gnome2.eclass index 92230f832dbe..d951a845d317 100644 --- a/eclass/ruby-gnome2.eclass +++ b/eclass/ruby-gnome2.eclass @@ -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/eclass/ruby-gnome2.eclass,v 1.3 2003/10/31 03:11:55 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-gnome2.eclass,v 1.4 2003/12/05 09:47:15 usata Exp $ # # This eclass simplifies installation of the various pieces of # ruby-gnome2 since they share a very common installation procedure. @@ -42,6 +42,7 @@ ruby-gnome2_src_compile() { } ruby-gnome2_src_install() { + dodir $(ruby -r rbconfig -e 'print Config::CONFIG["sitearchdir"]') make DESTDIR=${D} install || die "make install failed" for doc in ../AUTHORS ../NEWS ChangeLog README; do [ -s "$doc" ] && dodoc $doc |