Skip to content

Commit

Permalink
app-forensics/sleuthkit: fix the conditional logic on doc use flag
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.5, Repoman-2.3.2
  • Loading branch information
gktrk committed Aug 16, 2017
1 parent 480a8ac commit b820d12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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 "")
}
Expand Down

0 comments on commit b820d12

Please sign in to comment.