sci-geosciences/routino: fix a stupid typo
authorAndrey Grozin <grozin@gentoo.org>
Sun, 16 Sep 2018 04:23:04 +0000 (11:23 +0700)
committerAndrey Grozin <grozin@gentoo.org>
Sun, 16 Sep 2018 04:23:04 +0000 (11:23 +0700)
Closes: https://bugs.gentoo.org/627866
Package-Manager: Portage-2.3.41, Repoman-2.3.9

sci-geosciences/routino/routino-3.2.ebuild

index 19512b20efa772e4a7d5761aba76460c1c78b02b..4827cce51b00f0e19e3bf46cd2b3b62df35be204 100644 (file)
@@ -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"
 }