diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-04-26 01:00:34 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-04-26 01:00:34 +0000 |
commit | ca30894ba2de1d11a0a5f7b739a99ff5b3a5e5f1 (patch) | |
tree | ccfbf52832950b8b28c4f048d121d85adfdaa24f | |
parent | Add die following econf for bug 48950 (Manifest recommit) (diff) | |
download | gentoo-2-ca30894ba2de1d11a0a5f7b739a99ff5b3a5e5f1.tar.gz gentoo-2-ca30894ba2de1d11a0a5f7b739a99ff5b3a5e5f1.tar.bz2 gentoo-2-ca30894ba2de1d11a0a5f7b739a99ff5b3a5e5f1.zip |
added "die" command in front of doins and cp lines
-rw-r--r-- | eclass/ruby.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index 24631b11e605..ebacdd07c3e9 100644 --- a/eclass/ruby.eclass +++ b/eclass/ruby.eclass @@ -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/eclass/ruby.eclass,v 1.30 2004/04/25 17:45:09 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.31 2004/04/26 01:00:34 squinky86 Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -127,7 +127,7 @@ ruby_einstall() { else siteruby=$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitedir"]') insinto ${siteruby} - doins *.rb || "doins failed" + doins *.rb || die "doins failed" fi } @@ -147,7 +147,7 @@ erubydoc() { fi if [ -d sample ] ; then dodir /usr/share/doc/${PF} - cp -a sample ${D}/usr/share/doc/${PF} || "cp failed" + cp -a sample ${D}/usr/share/doc/${PF} || die "cp failed" fi for i in ChangeLog* [A-Z][A-Z]* ; do [ -e $i ] && dodoc $i |