From: Mike Frysinger Date: Mon, 1 Aug 2016 05:11:21 +0000 (+0800) Subject: build: use $(UDEV_FILES) instead of duplicating the list X-Git-Tag: hwids-20160801 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8f1a772f40e3e0966d2761039b1d5495c4f11c6f;p=oweals%2Fhwids.git build: use $(UDEV_FILES) instead of duplicating the list The copy of UDEV_FILES was already a few files behind. --- diff --git a/Makefile b/Makefile index 2f178f9..9fcbe29 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ fetch: $(Q)for f in $(UDEV_FILES); do curl -L -z udev/$$f -o udev/$$f -R $(SYSTEMD_SOURCE)/$$f; done $(Q)$(STATUS) -PV ?= $(shell ( awk '$$2 == "Date:" { print $$3; nextfile }' pci.ids usb.ids; git log --format=format:%ci -1 -- oui.txt udev/20-acpi-vendor.hwdb udev/20-bluetooth-vendor-product.hwdb udev/20-net-ifname.hwdb udev/60-keyboard.hwdb udev/70-mouse.hwdb udev/70-pointingstick.hwdb udev/70-touchpad.hwdb udev-hwdb-update.pl | cut -d ' ' -f1; ) | sort | tail -n 1 | tr -d -) +PV ?= $(shell ( awk '$$2 == "Date:" { print $$3; nextfile }' pci.ids usb.ids; git log --format=format:%ci -1 -- oui.txt $(addprefix udev/,$(UDEV_FILES)) udev-hwdb-update.pl | cut -d ' ' -f1; ) | sort | tail -n 1 | tr -d -) P = hwids-$(PV) tag: