diff options
author | emersion <contact@emersion.fr> | 2018-08-16 11:11:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-16 11:11:08 +0100 |
commit | 56600804fffe79abbcf4004a74c18bdb85afea2a (patch) | |
tree | 33cfd9bf8c96ae2eaed61ceea3aee7e1adf6adfd /meson.build | |
parent | d66d33f5a2d32e437733ec894163242aa95a001e (diff) | |
parent | 570970db6455b5a5a4845ca9b283d0529ccda05d (diff) |
Merge pull request #1189 from agx/ctags-f
ctags: use -f instead of -o
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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 |