diff options
author | Pavel Shilovsky <pshilov@microsoft.com> | 2019-12-13 16:52:53 -0800 |
---|---|---|
committer | Pavel Shilovsky <pshilov@microsoft.com> | 2019-12-16 15:02:41 -0800 |
commit | eba990a1128e18bfdecaccec1a67d7fe588c4ab6 (patch) | |
tree | 352870573c7db4f4084e54ec1cf1e8b460e5dde6 | |
parent | f64814b215c8669ad912058225eabf5e1d0d40fd (diff) | |
download | cifs-utils-eba990a1128e18bfdecaccec1a67d7fe588c4ab6.tar.gz cifs-utils-eba990a1128e18bfdecaccec1a67d7fe588c4ab6.tar.bz2 cifs-utils-eba990a1128e18bfdecaccec1a67d7fe588c4ab6.zip |
Properly install mount.smb3 helper files
Signed-off-by: Kenneth D'souza <kdsouza@redhat.com>
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index b3e9d9a..fe9cd34 100644 --- a/Makefile.am +++ b/Makefile.am @@ -120,4 +120,10 @@ SUBDIRS = contrib install-exec-hook: (cd $(ROOTSBINDIR) && ln -sf mount.cifs mount.smb3) + +install-data-hook: (cd $(man8dir) && ln -sf mount.cifs.8 mount.smb3.8) + +uninstall-hook: + (cd $(ROOTSBINDIR) && rm -f $(ROOTSBINDIR)/mount.smb3) + (cd $(man8dir) && rm -f $(man8dir)/mount.smb3.8) |