diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-10-02 16:47:07 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-10-02 16:47:07 +0000 |
commit | cd1238862c1d7a4537ca8cc585ecc64f9105e05b (patch) | |
tree | b4217142acb3b085858148a0d4aa96ac6092d5e4 /udev-lfs | |
parent | 8b43a24360d4a20008e07e47c4aa3dce2a28b2ed (diff) |
Update in preparation for systemd-208
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10350 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'udev-lfs')
-rw-r--r-- | udev-lfs/Makefile.lfs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/udev-lfs/Makefile.lfs b/udev-lfs/Makefile.lfs index 0f4f06318..1b1909bd5 100644 --- a/udev-lfs/Makefile.lfs +++ b/udev-lfs/Makefile.lfs @@ -4,7 +4,7 @@ # vim: tabstop=3 SHELL=/bin/bash -SYSTEMD_VERSION=207 +SYSTEMD_VERSION=208 VERSION=$(SYSTEMD_VERSION)-1 ifeq ($(V),) @@ -53,7 +53,9 @@ LIBUDEV_SRCS = libudev-device-private.c \ libudev-queue-private.c \ libudev-queue.c \ libudev-util.c \ - libudev.c + libudev.c \ + test-device-nodes.c \ + device-nodes.c LIBUDEV_OBJS := $(addprefix build/, $(LIBUDEV_SRCS:.c=.o)) @@ -145,7 +147,7 @@ LFS_RULES = 55-lfs.rules VPATH = src/login src/udev src/udev/accelerometer \ src/udev/scsi_id src/udev/cdrom_id src/udev/v4l_id \ src/udev/mtd_probe src/udev/collect src/udev/ata_id \ - src/libudev src/libsystemd-daemon + src/libudev src/test src/libsystemd-daemon SED_PROCESS = \ sed -e 's|@VERSION@|$(SYSTEMD_VERSION)|g' \ |