summaryrefslogtreecommitdiff
path: root/src/libudev
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-01-24 15:14:15 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-01-24 22:04:03 +0100
commit4a7ee0a5217ab963c12704dbff428c43d9df81f0 (patch)
tree3ed6aa0e2bfbcb394f35da8fd8a1fa58b64fcd1f /src/libudev
parentbe551917938391ba57fd570bd19be4d6c3c547bc (diff)
downloadsystemd-4a7ee0a5217ab963c12704dbff428c43d9df81f0.tar.gz
meson: Do not include headers in source lists
Meson+ninja+compiler do this for us and are better at it. https://mesonbuild.com/FAQ.html#do-i-need-to-add-my-headers-to-the-sources-list-like-in-autotools
Diffstat (limited to 'src/libudev')
-rw-r--r--src/libudev/meson.build5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libudev/meson.build b/src/libudev/meson.build
index 92d54078f0..35c024a0e7 100644
--- a/src/libudev/meson.build
+++ b/src/libudev/meson.build
@@ -2,17 +2,14 @@
libudev_sources = files(
'libudev-device.c',
- 'libudev-device-internal.h',
'libudev-enumerate.c',
'libudev-hwdb.c',
'libudev-list.c',
- 'libudev-list-internal.h',
'libudev-monitor.c',
'libudev-queue.c',
'libudev-util.c',
- 'libudev-util.h',
'libudev.c',
- 'libudev.h')
+)
############################################################