summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGöktürk Yüksek <gokturk@gentoo.org>2017-08-16 18:52:09 -0400
committerGöktürk Yüksek <gokturk@gentoo.org>2017-08-16 18:52:09 -0400
commitb820d12b7e9152d619ae73cffb9bf79e6fe65cdb (patch)
tree1895b2d284741396fe6895fe2664124b9801c567 /app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild
parentsys-kernel/vanilla-sources: Version bumps (diff)
downloadgentoo-b820d12b7e9152d619ae73cffb9bf79e6fe65cdb.tar.gz
gentoo-b820d12b7e9152d619ae73cffb9bf79e6fe65cdb.tar.bz2
gentoo-b820d12b7e9152d619ae73cffb9bf79e6fe65cdb.zip
app-forensics/sleuthkit: fix the conditional logic on doc use flag
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild')
-rw-r--r--app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild b/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild
index 754294c9377d..adf6fcbf46e3 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 "")
}