From: Mike Blumenkrantz Date: Fri, 11 Nov 2011 15:32:43 +0000 (+0000) Subject: fix bin detection X-Git-Tag: submit/devel/efl/20131022.203902~7574 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f11de3613176d663494a0f4c5a52cc7fff21ac6;p=platform%2Fupstream%2Fefl.git fix bin detection SVN revision: 65063 --- diff --git a/legacy/eeze/configure.ac b/legacy/eeze/configure.ac index 113039e..f3a2480 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@:>@]))