mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-11-01 00:51:08 +03:00
e598c5738c
"Hello world!" linked against libselinux parses /proc/mounts and whatever else on startup, even when the lib is not needed at all. Not funny! Get rid of that thing where it's not absolutely needed.
20 lines
377 B
Makefile
20 lines
377 B
Makefile
include $(top_srcdir)/Makefile.am.inc
|
|
|
|
udevhomedir = $(udev_prefix)/lib/udev
|
|
udevhome_PROGRAMS = \
|
|
fstab_import
|
|
|
|
udevrulesdir = $(udev_prefix)/lib/udev/rules.d
|
|
dist_udevrules_DATA = \
|
|
79-fstab_import.rules
|
|
|
|
fstab_import_SOURCES = \
|
|
fstab_import.c \
|
|
../../udev/lib/libudev.h \
|
|
../../udev/lib/libudev.c \
|
|
../../udev/lib/libudev-util.c
|
|
|
|
distclean-local:
|
|
rm -f Makefile.in
|
|
|