ctags: use -f instead of -o
The later does not exist on FreeBSD See #725
This commit is contained in:
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…
Reference in New Issue