mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-25 03:37:45 +03:00
Added check for broken alien version
Added a check for alien 8.95.{1,2,3}, which is known to fail to
generate debs 100% of the time, and instead print out a message
informing the developer that it's known to be broken and linking
them to more information.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Rich Ercolani <rincebrain@gmail.com>
Closes #11848
Closes #11850
This commit is contained in:
+13
-1
@@ -14,7 +14,19 @@ deb-local:
|
||||
"*** package for your distribution which provides ${ALIEN},\n" \
|
||||
"*** re-run configure, and try again.\n"; \
|
||||
exit 1; \
|
||||
fi)
|
||||
fi; \
|
||||
if test "${ALIEN_MAJOR}" = "8" && \
|
||||
test "${ALIEN_MINOR}" = "95"; then \
|
||||
if test "${ALIEN_POINT}" = "1" || \
|
||||
test "${ALIEN_POINT}" = "2" || \
|
||||
test "${ALIEN_POINT}" = "3"; then \
|
||||
/bin/echo -e "\n" \
|
||||
"*** Installed version of ${ALIEN} is known to be broken;\n" \
|
||||
"*** attempting to generate debs will fail! See\n" \
|
||||
"*** https://github.com/openzfs/zfs/issues/11650 for details.\n"; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
fi)
|
||||
|
||||
deb-kmod: deb-local rpm-kmod
|
||||
name=${PACKAGE}; \
|
||||
|
||||
Reference in New Issue
Block a user