Merge pull request #1189 from agx/ctags-f

ctags: use -f instead of -o
This commit is contained in:
emersion 2018-08-16 11:11:08 +01:00 committed by GitHub
commit 56600804ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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