diff options
author | Todd Zullinger | 2009-05-11 15:24:09 -0400 |
---|---|---|
committer | Matt Colyer | 2009-05-11 20:29:46 -0700 |
commit | 9da6bc0c7e9cf7d5d458bbb9d3ef607757f2f48d (patch) | |
tree | 357f1397ca251b50a7b258751ae7694e7dd99b3d /Makefile.am | |
parent | f3dbc12d4494da2fab11791ab73de60b06e79e8c (diff) | |
download | ifuse-0.9.1.tar.gz ifuse-0.9.1.tar.bz2 |
Fix 'make distcheck'0.9.1
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 <matt@colyer.name>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index aabfa91..70e1c93 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,8 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src fdi +DISTCHECK_CONFIGURE_FLAGS = --disable-root-sbin + indent: indent -kr -ut -ts4 -l120 src/*.c |