ctags: use -f instead of -o

The later does not exist on FreeBSD

See #725
This commit is contained in:
Guido Günther 2018-08-16 12:01:06 +02:00
parent 1a73baac94
commit 570970db64
1 changed files with 1 additions and 1 deletions

View File

@ -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