fix configure on captainigloo's system

SVN revision: 60001
This commit is contained in:
Mike Blumenkrantz 2011-06-06 19:14:32 +00:00
parent 8b4793d575
commit b3b3a6b74d
1 changed files with 5 additions and 1 deletions

View File

@ -129,7 +129,11 @@ if test "x$eeze_mount" = "xyes";then
fi
AC_DEFINE_UNQUOTED([EEZE_EJECT_BIN], ["$with_eject"], [eject bin to use])
fi
AM_CONDITIONAL([OLD_LIBMOUNT], [test -n $mount_v -a $(echo $mount_v | cut -d'.' -f2) -lt 19])
if test -n "$mount_v";then
AM_CONDITIONAL([OLD_LIBMOUNT], [test "$(echo $mount_v | cut -d'.' -f2)" -lt 19])
else
AM_CONDITIONAL([OLD_LIBMOUNT], [false])
fi
if test -z "$OLD_LIBMOUNT_TRUE" ; then
AC_DEFINE_UNQUOTED([OLD_LIBMOUNT], [1], [using first version of libmount])
fi