meson: drop redundant source files in executable()
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 4 Jan 2021 11:43:44 +0000 (20:43 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Jan 2021 22:06:32 +0000 (07:06 +0900)
meson.build

index 7396c943c01ca3274d5926b8587d6e25240a5615..70dc7bd104b09858f027b270514493fdd1c93c1c 100644 (file)
@@ -1965,7 +1965,6 @@ if conf.get('HAVE_BLKID') == 1
         executable(
                 'systemd-gpt-auto-generator',
                 'src/gpt-auto-generator/gpt-auto-generator.c',
-                'src/shared/blkid-util.h',
                 include_directories : includes,
                 link_with : [libshared],
                 dependencies : libblkid,
@@ -3102,7 +3101,6 @@ if conf.get('ENABLE_HWDB') == 1
         public_programs += executable(
                 'systemd-hwdb',
                 'src/hwdb/hwdb.c',
-                'src/libsystemd/sd-hwdb/hwdb-internal.h',
                 include_directories : includes,
                 link_with : udev_link_with,
                 install_rpath : udev_rpath,
@@ -3258,7 +3256,7 @@ endif
 
 executable(
         'systemd-sulogin-shell',
-        ['src/sulogin-shell/sulogin-shell.c'],
+        'src/sulogin-shell/sulogin-shell.c',
         include_directories : includes,
         link_with : [libshared],
         install_rpath : rootlibexecdir,