diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-06-28 10:37:06 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-06-28 10:37:06 +0000 |
commit | e1bcecec1b042d3ca91391af3840c06e4c8f72ac (patch) | |
tree | 9ae7c2eae3890e72bf943d16af52919fec2c7d68 | |
parent | ea18d11c3a563afa2ce68c5d056575a3db445500 (diff) | |
download | libfuse-e1bcecec1b042d3ca91391af3840c06e4c8f72ac.tar.gz |
add mount.fuse
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | util/Makefile.am | 8 |
2 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2005-06-28 Miklos Szeredi <miklos@szeredi.hu> + + * Add 'mount.fuse' written by Petr Klima + 2005-06-20 Miklos Szeredi <miklos@szeredi.hu> * Fix UCLIBC compile error. Patch by Christian Magnusson diff --git a/util/Makefile.am b/util/Makefile.am index 48f9957..4b6f7d1 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -7,3 +7,11 @@ fusermount_SOURCES = fusermount.c install-exec-hook: -chown root $(DESTDIR)$(bindir)/fusermount -chmod u+s $(DESTDIR)$(bindir)/fusermount + +EXTRA_DIST: mount.fuse + +install-exec-local: + $(INSTALL_PROGRAM) $(srcdir)/mount.fuse $(DESTDIR)/sbin/mount.fuse + +uninstall-local: + rm -f $(DESTDIR)/sbin/mount.fuse |