summaryrefslogtreecommitdiff
path: root/pkg/sshfs
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-03-18 13:41:47 -0700
committerMichael Forney <mforney@mforney.org>2019-03-19 00:52:21 -0700
commit4e554f04953e88ec03f645001c5153461d760bc0 (patch)
tree847df67cca191155775d353e023fb442fb2cd0d5 /pkg/sshfs
parent5a1e8ee09062969521dee5609d144ecf727805e1 (diff)
Rename libfuse to fuse
Although the upstream repository is called libfuse, the distributed source archives are called fuse, and this is how most other distributions name the package.
Diffstat (limited to 'pkg/sshfs')
-rw-r--r--pkg/sshfs/gen.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sshfs/gen.lua b/pkg/sshfs/gen.lua
index 214c7c63..bae81fc2 100644
--- a/pkg/sshfs/gen.lua
+++ b/pkg/sshfs/gen.lua
@@ -1,12 +1,12 @@
cflags{
'-D FUSE_USE_VERSION=31',
'-I $dir',
- '-I pkg/libfuse/src/include',
+ '-I pkg/fuse/src/include',
}
exe('sshfs', {
- 'sshfs.c', 'nocache.c', '$builddir/pkg/libfuse/libfuse.a',
-}, {'pkg/libfuse/fetch'})
+ 'sshfs.c', 'nocache.c', '$builddir/pkg/fuse/libfuse.a',
+}, {'pkg/fuse/fetch'})
file('bin/sshfs', '755', '$outdir/sshfs')
man{'$dir/sshfs.1'}