From: Alexey Shvetsov Date: Sat, 14 May 2011 14:25:37 +0000 (+0400) Subject: Fix distribution detection for gentoo X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=d9bfe0f57a82fd1a02e93309912008ed1aa83e04;p=zfs.git Fix distribution detection for gentoo Also this may fix other distros because some of them also provide /etc/lsb-release not only ubuntu. Closes #244 --- diff --git a/config/zfs-build.m4 b/config/zfs-build.m4 index d281b4d..773a944 100644 --- a/config/zfs-build.m4 +++ b/config/zfs-build.m4 @@ -178,16 +178,16 @@ AC_DEFUN([ZFS_AC_DEFAULT_PACKAGE], [ VENDOR=redhat ; elif test -f /etc/fedora-release ; then VENDOR=fedora ; - elif test -f /etc/lsb-release ; then - VENDOR=ubuntu ; + elif test -f /etc/gentoo-release ; then + VENDOR=gentoo ; elif test -f /etc/debian_version ; then VENDOR=debian ; elif test -f /etc/SuSE-release ; then VENDOR=sles ; elif test -f /etc/slackware-version ; then VENDOR=slackware ; - elif test -f /etc/gentoo-release ; then - VENDOR=gentoo ; + elif test -f /etc/lsb-release ; then + VENDOR=ubuntu ; elif test -f /etc/lunar.release ; then VENDOR=lunar ; else diff --git a/configure b/configure index fee3c74..c636d53 100755 --- a/configure +++ b/configure @@ -11785,16 +11785,16 @@ $as_echo_n "checking linux distribution... " >&6; } VENDOR=redhat ; elif test -f /etc/fedora-release ; then VENDOR=fedora ; - elif test -f /etc/lsb-release ; then - VENDOR=ubuntu ; + elif test -f /etc/gentoo-release ; then + VENDOR=gentoo ; elif test -f /etc/debian_version ; then VENDOR=debian ; elif test -f /etc/SuSE-release ; then VENDOR=sles ; elif test -f /etc/slackware-version ; then VENDOR=slackware ; - elif test -f /etc/gentoo-release ; then - VENDOR=gentoo ; + elif test -f /etc/lsb-release ; then + VENDOR=ubuntu ; elif test -f /etc/lunar.release ; then VENDOR=lunar ; else