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 26AFF1396D0 for ; Wed, 16 Aug 2017 22:53:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74C46E0C5F; Wed, 16 Aug 2017 22:53:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50079E0C5F for ; Wed, 16 Aug 2017 22:53:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4030F34170D for ; Wed, 16 Aug 2017 22:53:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 941A7761D for ; Wed, 16 Aug 2017 22:53:22 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1502923929.b820d12b7e9152d619ae73cffb9bf79e6fe65cdb.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild X-VCS-Directories: app-forensics/sleuthkit/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: b820d12b7e9152d619ae73cffb9bf79e6fe65cdb X-VCS-Branch: master Date: Wed, 16 Aug 2017 22:53:22 +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: 8d89171d-9548-4ad8-998f-9386bc868d3d X-Archives-Hash: 364ed196e396bbcb24eb64a7074c63e0 commit: b820d12b7e9152d619ae73cffb9bf79e6fe65cdb Author: Göktürk Yüksek gentoo org> AuthorDate: Wed Aug 16 22:52:09 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Wed Aug 16 22:52:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b820d12b app-forensics/sleuthkit: fix the conditional logic on doc use flag Package-Manager: Portage-2.3.5, Repoman-2.3.2 app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild b/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild index 754294c9377..adf6fcbf46e 100644 --- a/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild +++ b/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild @@ -131,7 +131,9 @@ src_compile() { fi # Create the doc output dirs if requested - use doc && mkdir -p "${T}"/doc/{api-docs,jni-docs} || die + if use doc; then + mkdir -p "${T}"/doc/{api-docs,jni-docs} || die + fi emake all $(usex doc api-docs "") }