diff options
author | Andrey Grozin <grozin@gentoo.org> | 2018-09-16 11:23:04 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2018-09-16 11:23:04 +0700 |
commit | 26234026e7afbfc2719e7d38498b303a494aeeb6 (patch) | |
tree | 80029fb757dcf115834f89c8ce5d1cb0a54141e8 /sci-geosciences/routino | |
parent | www-client/chromium: move dev-util/gn to DEPEND (diff) | |
download | gentoo-26234026e7afbfc2719e7d38498b303a494aeeb6.tar.gz gentoo-26234026e7afbfc2719e7d38498b303a494aeeb6.tar.bz2 gentoo-26234026e7afbfc2719e7d38498b303a494aeeb6.zip |
sci-geosciences/routino: fix a stupid typo
Closes: https://bugs.gentoo.org/627866
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sci-geosciences/routino')
-rw-r--r-- | sci-geosciences/routino/routino-3.2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sci-geosciences/routino/routino-3.2.ebuild b/sci-geosciences/routino/routino-3.2.ebuild index 19512b20efa7..4827cce51b00 100644 --- a/sci-geosciences/routino/routino-3.2.ebuild +++ b/sci-geosciences/routino/routino-3.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -27,6 +27,6 @@ src_prepare() { src_compile() { emake -j1 - rm README.txt - mv doc/rm README.txt . + rm README.txt || die "rm README.txt failed" + mv doc/README.txt . || die "mv doc/README.txt . failed" } |