From: Zbigniew Jędrzejewski-Szmek Date: Fri, 5 May 2023 07:33:12 +0000 (+0200) Subject: meson: include .cc files in tags too X-Git-Tag: v254-rc1~529^2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba9ca60a88e1cf368ab59ee9c720caf0ec13a0b6;p=thirdparty%2Fsystemd.git meson: include .cc files in tags too We only have one, but it seems reasonable to not exclude it. Result tested with emacs. --- diff --git a/meson.build b/meson.build index 28086b16e61..1fd22c4f453 100644 --- a/meson.build +++ b/meson.build @@ -4726,7 +4726,7 @@ if git.found() all_files = run_command( env, '-u', 'GIT_WORK_TREE', git, '--git-dir=@0@/.git'.format(project_source_root), - 'ls-files', ':/*.[ch]', + 'ls-files', ':/*.[ch]', ':/*.cc', check : false) if all_files.returncode() == 0 all_files = files(all_files.stdout().split())