aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-08-16 12:01:06 +0200
committerGuido Günther <agx@sigxcpu.org>2018-08-16 12:01:06 +0200
commit570970db6455b5a5a4845ca9b283d0529ccda05d (patch)
treee6cedf4ef4afea18e2f4ba8bdc93696a1c185c7c
parent1a73baac94a18e55be3a22aab4ca8fee35225941 (diff)
ctags: use -f instead of -o
The later does not exist on FreeBSD See #725
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index fb610377..655eb52d 100644
--- a/meson.build
+++ b/meson.build
@@ -250,6 +250,6 @@ if git.found()
build_by_default: true,
input: all_files,
output: 'tags',
- command: [ctags.path(), '-o', 'tags'] + all_files)
+ command: [ctags.path(), '-f', 'tags'] + all_files)
endif
endif