From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5EC5F59CA6 for ; Sat, 19 Mar 2016 23:01:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2851321C00D; Sat, 19 Mar 2016 23:01:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C126221C00D for ; Sat, 19 Mar 2016 23:01:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2225933BF44 for ; Sat, 19 Mar 2016 23:01:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9959685B for ; Sat, 19 Mar 2016 23:01:08 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1458427638.133d32ee69d826ba40212851480f837033bac88a.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlitestudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild X-VCS-Directories: dev-db/sqlitestudio/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 133d32ee69d826ba40212851480f837033bac88a X-VCS-Branch: master Date: Sat, 19 Mar 2016 23:01:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 99e55dbe-b73f-456b-886d-a44bf41758a1 X-Archives-Hash: 9f27aa77afc9a8cb63b1c48159b6f127 commit: 133d32ee69d826ba40212851480f837033bac88a Author: Jan Chren gmail com> AuthorDate: Sat Mar 19 22:21:52 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Mar 19 22:47:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133d32ee dev-db/sqlitestudio: die on all `cd`s Closes: https://github.com/gentoo/gentoo/pull/1088 dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild b/dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild index d8d788a..b43ef8c 100644 --- a/dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild +++ b/dev-db/sqlitestudio/sqlitestudio-3.0.7.ebuild @@ -105,13 +105,13 @@ src_configure() { } src_compile() { - cd "${core_build_dir}" && emake - cd "${plugins_build_dir}" && emake + cd "${core_build_dir}" || die && emake + cd "${plugins_build_dir}" || die && emake } src_install() { - cd "${core_build_dir}" && emake INSTALL_ROOT="${ED}" install - cd "${plugins_build_dir}" && emake INSTALL_ROOT="${ED}" install + cd "${core_build_dir}" || die && emake INSTALL_ROOT="${ED}" install + cd "${plugins_build_dir}" || die && emake INSTALL_ROOT="${ED}" install dodoc "${core_src_dir}/docs/sqlitestudio3_docs.cfg" doicon -s scalable "${core_src_dir}/guiSQLiteStudio/img/${PN}.svg"