diff options
author | Göktürk Yüksek <gokturk@gentoo.org> | 2017-08-16 18:52:09 -0400 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2017-08-16 18:52:09 -0400 |
commit | b820d12b7e9152d619ae73cffb9bf79e6fe65cdb (patch) | |
tree | 1895b2d284741396fe6895fe2664124b9801c567 /app-forensics | |
parent | sys-kernel/vanilla-sources: Version bumps (diff) | |
download | gentoo-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')
-rw-r--r-- | app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild | 4 |
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 "") } |