From 4f11de3613176d663494a0f4c5a52cc7fff21ac6 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 11 Nov 2011 15:32:43 +0000 Subject: [PATCH] fix bin detection SVN revision: 65063 --- legacy/eeze/configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/legacy/eeze/configure.ac b/legacy/eeze/configure.ac index 113039e47b..f3a2480d10 100644 --- a/legacy/eeze/configure.ac +++ b/legacy/eeze/configure.ac @@ -106,8 +106,9 @@ PKG_CHECK_EXISTS([mount >= 2.18.0], ) if test "x$eeze_mount" = "xyes";then - with_mount="/bin/mount" - with_umount="/bin/umount" + with_mount="detect" + with_umount="detect" + with_eject="detect" AC_ARG_WITH([mount], AS_HELP_STRING([--with-mount], [specify mount bin @<:@default=detect@:>@])) AC_ARG_WITH([umount], AS_HELP_STRING([--with-umount], [specify umount bin @<:@default=detect@:>@])) AC_ARG_WITH([eject], AS_HELP_STRING([--with-eject], [specify eject bin @<:@default=detect@:>@]))