From 570970db6455b5a5a4845ca9b283d0529ccda05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Thu, 16 Aug 2018 12:01:06 +0200 Subject: [PATCH] ctags: use -f instead of -o The later does not exist on FreeBSD See #725 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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