diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index 2ac6805..54edccb 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -15,8 +15,10 @@ install-exec-hook: EXTRA_DIST = mount.fuse +MOUNT_FUSE_PATH = @MOUNT_FUSE_PATH@ + install-exec-local: - $(INSTALL_PROGRAM) $(srcdir)/mount.fuse $(DESTDIR)/sbin/mount.fuse + $(INSTALL_PROGRAM) $(srcdir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse uninstall-local: - rm -f $(DESTDIR)/sbin/mount.fuse + rm -f $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse |