]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: include .cc files in tags too
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 5 May 2023 07:33:12 +0000 (09:33 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 9 May 2023 06:11:10 +0000 (08:11 +0200)
We only have one, but it seems reasonable to not exclude it.
Result tested with emacs.

meson.build

index 28086b16e6167ca7f6511da2c808d92ece26ea1b..1fd22c4f4537b152db385d87f927035b4d358ab4 100644 (file)
@@ -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())