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 51F2F138330 for ; Wed, 31 Aug 2016 12:42:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CEECE0A84; Wed, 31 Aug 2016 12:42:40 +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 1699BE0A84 for ; Wed, 31 Aug 2016 12:42:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6F8B7340775 for ; Wed, 31 Aug 2016 12:42:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE6462467 for ; Wed, 31 Aug 2016 12:42:36 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1472647343.8b60ad5bd87a8ef70316032da5d199a004f86d70.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mariadb/mariadb-10.1.17.ebuild X-VCS-Directories: dev-db/mariadb/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 8b60ad5bd87a8ef70316032da5d199a004f86d70 X-VCS-Branch: master Date: Wed, 31 Aug 2016 12:42:36 +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: 765266ee-3823-4244-bd98-eafddcbb3686 X-Archives-Hash: 83f1cbfa301be0028dd1344f2333e013 commit: 8b60ad5bd87a8ef70316032da5d199a004f86d70 Author: Brian Evans gentoo org> AuthorDate: Wed Aug 31 12:33:46 2016 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Aug 31 12:42:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b60ad5b dev-db/mariadb: Add missing if operator in tests Package-Manager: portage-2.3.0 dev-db/mariadb/mariadb-10.1.17.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-db/mariadb/mariadb-10.1.17.ebuild b/dev-db/mariadb/mariadb-10.1.17.ebuild index cd8d8ef..ba8719a 100644 --- a/dev-db/mariadb/mariadb-10.1.17.ebuild +++ b/dev-db/mariadb/mariadb-10.1.17.ebuild @@ -155,7 +155,7 @@ multilib_src_test() { local retstatus_unit local retstatus_tests - if use server ; then + if ! use server ; then einfo "Skipping server tests due to minimal build." return 0 fi