From 9da6bc0c7e9cf7d5d458bbb9d3ef607757f2f48d Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Mon, 11 May 2009 15:24:09 -0400 Subject: Fix 'make distcheck' mount.fuse.ifuse needs to be installed in /sbin by default, but this breaks 'make distcheck'. This adds a --disable-root-sbin option to configure and uses it when running 'make distcheck'. Signed-off-by: Matt Colyer --- src/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 17798c6..11f2815 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,11 @@ AM_CFLAGS = $(libglib2_CFLAGS) $(libfuse_CFLAGS) $(libiphone_CFLAGS) -g AM_LDFLAGS = $(libglib2_LIBS) $(libfuse_LIBS) $(libiphone_LIBS) +if WITHOUT_ROOT_SBIN +rootsbinexecdir = $(sbindir) +else rootsbinexecdir = /sbin +endif rootsbinexec_PROGRAMS = mount.fuse.ifuse mount_fuse_ifuse_SOURCES = ifuse.c -- cgit v1.1-32-gdbae