From: Fabrice Bauzac Date: Fri, 2 Aug 2013 09:15:54 +0000 (+0200) Subject: Advertize the existence of some "configure" env vars. X-Git-Tag: fuse-3.0.0pre0~97 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4ffe6d3b6a6ea5c8fde6dbb792c70d602887ddb0;p=qemu-gpiodev%2Flibfuse.git Advertize the existence of some "configure" env vars. Advertize the existence of env vars MOUNT_FUSE_PATH, UDEV_RULES_PATH and INIT_D_PATH in the execution of ./configure. --- diff --git a/configure.ac b/configure.ac index f477694..04d7a6d 100644 --- a/configure.ac +++ b/configure.ac @@ -82,14 +82,17 @@ AC_SUBST(libfuse_libs) if test -z "$MOUNT_FUSE_PATH"; then MOUNT_FUSE_PATH=/sbin + AC_MSG_NOTICE([MOUNT_FUSE_PATH env var not set, using default $MOUNT_FUSE_PATH]) fi AC_SUBST(MOUNT_FUSE_PATH) if test -z "$UDEV_RULES_PATH"; then UDEV_RULES_PATH=/etc/udev/rules.d + AC_MSG_NOTICE([UDEV_RULES_PATH env var not set, using default $UDEV_RULES_PATH]) fi AC_SUBST(UDEV_RULES_PATH) if test -z "$INIT_D_PATH"; then INIT_D_PATH=/etc/init.d + AC_MSG_NOTICE([INIT_D_PATH env var not set, using default $INIT_D_PATH]) fi AC_SUBST(INIT_D_PATH)