diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2023-11-20 18:28:49 +0100 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2023-11-20 18:36:08 +0100 |
commit | c5bea26a9ca5ec73ba80d5bcf0b4dbde54e6f2a3 (patch) | |
tree | 625193fb4910b45d377da8530cc73b5d14f46e01 | |
parent | 3ec30eab46d1c933e5ef7eb89f9ea86bd27525a2 (diff) | |
download | bindfs-c5bea26a9ca5ec73ba80d5bcf0b4dbde54e6f2a3.tar.gz |
src/Makefile.am: Add missing DESTDIR for macOS
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index da443a1..1fd6ef9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,7 +12,7 @@ bindfs_LDADD = ${fuse_LIBS} ${fuse3_LIBS} ${fuse_t_LIBS} ${my_LDFLAGS} man_MANS = bindfs.1 if BUILD_OS_IS_DARWIN -bindfs_BUNDLEDIR = /Library/Filesystems/bindfs.fs +bindfs_BUNDLEDIR = $(DESTDIR)/Library/Filesystems/bindfs.fs bindfs_BUNDLEBINDIR = "${bindfs_BUNDLEDIR}/Contents/Resources" install-exec-hook: |