ctags: use -f instead of -o

The later does not exist on FreeBSD

See #725
master
Guido Günther 6 years ago
parent 1a73baac94
commit 570970db64

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

Loading…
Cancel
Save