From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9397913832E for ; Mon, 18 Jul 2016 16:55:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5977821C07B; Mon, 18 Jul 2016 16:55:29 +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 F1D7F21C07B for ; Mon, 18 Jul 2016 16:55:28 +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 60DEE340775 for ; Mon, 18 Jul 2016 16:55:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FA0BE62 for ; Mon, 18 Jul 2016 16:55:23 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1468860917.d7eb5c5b4a392b0506c60bea4795ea3fa3c5f06f.axs@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/seamonkey/seamonkey-2.39.ebuild www-client/seamonkey/seamonkey-2.40.ebuild X-VCS-Directories: www-client/seamonkey/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: d7eb5c5b4a392b0506c60bea4795ea3fa3c5f06f X-VCS-Branch: master Date: Mon, 18 Jul 2016 16:55:23 +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: 14782546-c3a3-49f0-951f-78a7e565767f X-Archives-Hash: 816101edbf8fea2647c38e3f25a0088c commit: d7eb5c5b4a392b0506c60bea4795ea3fa3c5f06f Author: Ian Stakenvicius gentoo org> AuthorDate: Mon Jul 18 16:52:39 2016 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Mon Jul 18 16:55:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7eb5c5b www-client/seamonkey: fix install path related to USE="-gmp-autoupdate" Bug: http://bugs.gentoo.org/588070 Package-Manager: portage-2.2.28 www-client/seamonkey/seamonkey-2.39.ebuild | 2 +- www-client/seamonkey/seamonkey-2.40.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/seamonkey/seamonkey-2.39.ebuild b/www-client/seamonkey/seamonkey-2.39.ebuild index 5d1acd0..d668866 100644 --- a/www-client/seamonkey/seamonkey-2.39.ebuild +++ b/www-client/seamonkey/seamonkey-2.39.ebuild @@ -271,7 +271,7 @@ src_install() { if ! use gmp-autoupdate ; then for plugin in gmp-gmpopenh264 ; do echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ - "${S}/${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ + "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ || die done fi diff --git a/www-client/seamonkey/seamonkey-2.40.ebuild b/www-client/seamonkey/seamonkey-2.40.ebuild index 3c5e616..2e413b2 100644 --- a/www-client/seamonkey/seamonkey-2.40.ebuild +++ b/www-client/seamonkey/seamonkey-2.40.ebuild @@ -276,7 +276,7 @@ src_install() { if ! use gmp-autoupdate ; then for plugin in gmp-gmpopenh264 ; do echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ - "${S}/${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ + "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ || die done fi