diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 629ed4372a..003308e580 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,7 +43,7 @@ LIBUDEV_REVISION=4 LIBUDEV_AGE=6 LIBSYSTEMD_CURRENT=10 -LIBSYSTEMD_REVISION=1 +LIBSYSTEMD_REVISION=2 LIBSYSTEMD_AGE=10 # The following four libraries only exist for compatibility reasons, @@ -6063,10 +6063,11 @@ dist: dist-check-python dist-check-compat-libs .PHONY: hwdb-update hwdb-update: ( cd $(top_srcdir)/hwdb && \ - wget -N http://www.linux-usb.org/usb.ids \ - http://pci-ids.ucw.cz/v2.2/pci.ids \ - http://standards.ieee.org/develop/regauth/oui/oui.txt \ - http://standards.ieee.org/develop/regauth/iab/iab.txt && \ + wget -O usb.ids 'http://www.linux-usb.org/usb.ids' && \ + wget -O pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids' && \ + wget -O ma-large.txt 'https://services13.ieee.org/RST/standards-ra-web/rest/assignments/download/?registry=MA-L&format=txt' && \ + wget -O ma-medium.txt 'https://services13.ieee.org/RST/standards-ra-web/rest/assignments/download/?registry=MA-M&format=txt' && \ + wget -O ma-small.txt 'https://services13.ieee.org/RST/standards-ra-web/rest/assignments/download/?registry=MA-S&format=txt' && \ ./ids-update.pl ) .PHONY: built-sources |