aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2018-09-17 10:35:50 +0100
committerNikolaus Rath <Nikolaus@rath.org>2018-09-17 10:35:50 +0100
commitd9bef3c6e4bd06de59589b3e5f4cbbbd2661dbfc (patch)
tree56574f5b79cff1a94645fd85ac05445a35863743 /util
parent67e4914f938259182fa84e1e941c724a14d605c0 (diff)
downloadlibfuse-d9bef3c6e4bd06de59589b3e5f4cbbbd2661dbfc.tar.gz
Don't special-case bulid of mount_util.c.
We already support out of source builds without this.
Diffstat (limited to 'util')
-rw-r--r--util/meson.build12
1 files changed, 1 insertions, 11 deletions
diff --git a/util/meson.build b/util/meson.build
index 01f7678..674fd77 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -1,16 +1,6 @@
-# we re-use mount_util.c from the library, but do want to keep ourself
-# as stand-alone as possible. in order to make an out-of-source build
-# possible, we "generate" the file from its original location by
-# copying it over.
-mount_util_c = custom_target('mount_util',
- input : '../lib/mount_util.c',
- output : 'mount_util.c',
- command : ['cp', '-a', '@INPUT@', '@OUTPUT@'],
-)
-
fuseconf_path = join_paths(get_option('prefix'), get_option('sysconfdir'), 'fuse.conf')
-executable('fusermount3', ['fusermount.c', mount_util_c],
+executable('fusermount3', ['fusermount.c', '../lib/mount_util.c'],
include_directories: include_dirs,
install: true,
install_dir: get_option('bindir'),