diff options
author | Zoltan Kuscsik <zoltan.kuscsik@linaro.org> | 2016-07-01 09:30:31 +0200 |
---|---|---|
committer | Zoltan Kuscsik <zoltan.kuscsik@linaro.org> | 2016-07-01 09:30:31 +0200 |
commit | e3cd445a4ee44a16faa646d7b642d02eea62b1f8 (patch) | |
tree | 856e4754ca8ccfb1f948ab14daa37af6b71050da | |
parent | 1167c119015e79d9edc4be2f40ae7d7cf1ff32b3 (diff) | |
download | sshfs-e3cd445a4ee44a16faa646d7b642d02eea62b1f8.tar sshfs-e3cd445a4ee44a16faa646d7b642d02eea62b1f8.tar.gz sshfs-e3cd445a4ee44a16faa646d7b642d02eea62b1f8.tar.bz2 sshfs-e3cd445a4ee44a16faa646d7b642d02eea62b1f8.zip |
Makefile: fix path for sshfs.1
Fix source path when build directory differs
from the source dir.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f003bae..3d8f9cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ sshfs.1: sshfs.1.in $(AM_V_GEN)sed \ -e 's,__IDMAP_DEFAULT__,$(IDMAP_DEFAULT),g' \ -e 's,__UNMOUNT_COMMAND__,$(UNMOUNT_COMMAND),g' \ - <sshfs.1.in >sshfs.1.tmp || exit 1; \ + <$(srcdir)/sshfs.1.in >sshfs.1.tmp || exit 1; \ mv sshfs.1.tmp sshfs.1 if SSH_NODELAY_SO |