Fix 'make install' and 'make uninstall' if FUSE isn't enabled

edge.strict_endians
szaka 2005-10-05 20:11:23 +00:00
parent 81d7457fe8
commit ae276bbfe1
2 changed files with 5 additions and 1 deletions

View File

@ -73,7 +73,7 @@ xx/xx/2005 - 1.12.0-WIP
- ntfsmount: Add 'locale' option. (Yura)
- ntfsmount: Change interface to 'ntfsmount device mount_point'. (Yura)
- Hardlink ntfsmount to /sbin/mount.ntfs-fuse, thus it possible mounting
from fstab by specifying ntfs-fuse filesystem type. (Yura)
from fstab by specifying ntfs-fuse filesystem type. (Yura, Szaka)
08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements.

View File

@ -143,7 +143,9 @@ extras: libs $(EXTRA_PROGRAMS)
install-exec-hook:
$(LN) -f $(DESTDIR)$(sbindir)/mkntfs $(DESTDIR)$(sbindir)/mkfs.ntfs
if ENABLE_FUSE_MODULE
$(LN) -f $(DESTDIR)$(bindir)/ntfsmount /sbin/mount.ntfs-fuse
endif
install-data-hook:
$(LN) -f $(DESTDIR)$(man8dir)/mkntfs.8 $(DESTDIR)$(man8dir)/mkfs.ntfs.8
@ -151,4 +153,6 @@ install-data-hook:
uninstall-local:
rm -f $(DESTDIR)$(sbindir)/mkfs.ntfs
rm -f $(DESTDIR)$(man8dir)/mkfs.ntfs.8
if ENABLE_FUSE_MODULE
rm -f /sbin/mount.ntfs-fuse
endif