diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-03-25 00:10:07 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-03-25 00:10:07 +0100 |
commit | a780a8f628cd5be6b42454be0d8b66892b12a364 (patch) | |
tree | 4a1e09b83f03ed1839aed2be2386e42ee6883e16 /gen_compile.sh | |
parent | Fix iSCSI support (diff) | |
download | genkernel-a780a8f628cd5be6b42454be0d8b66892b12a364.tar.gz genkernel-a780a8f628cd5be6b42454be0d8b66892b12a364.tar.bz2 genkernel-a780a8f628cd5be6b42454be0d8b66892b12a364.zip |
Revert "compile_lvm(): No need to call compile_libaio() when LVM_BINCACHE is valid"
This reverts commit 45a2a4276baa5d638530312d1d5f19bae3b1e8ad.
Let's keep that call to allow to trigger a rebuild.
Diffstat (limited to 'gen_compile.sh')
-rwxr-xr-x | gen_compile.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen_compile.sh b/gen_compile.sh index a968eee2..1c29360f 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -569,12 +569,12 @@ compile_libaio() { } compile_lvm() { + compile_libaio + if [[ -f "${LVM_BINCACHE}" && "${LVM_BINCACHE}" -nt "${LIBAIO_BINCACHE}" ]] then print_info 1 "$(getIndent 3)lvm: >> Using cache" else - compile_libaio - [ -f "${LVM_SRCTAR}" ] || gen_die "Could not find LVM source tarball: ${LVM_SRCTAR}! Please place it there, or place another version, changing /etc/genkernel.conf as necessary!" cd "${TEMP}" |