mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-26 21:54:30 +08:00
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.
This commit is contained in:
parent
d6c284cbda
commit
c92fecbb51
@ -77,14 +77,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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user