diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-02 14:48:24 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-04 21:57:55 -0500 |
commit | 7f8e692bb2c90e7ac857c3d60cf7b916c842ab24 (patch) | |
tree | 8200709f46d4d72f008862d5c793ccc87baffd5f | |
parent | e241dd66f13dde958bdcb48d8943acea9298d94b (diff) |
build-sys: allow update-hwdb with seperate build dir
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 64a4500306..2a673555bb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4096,11 +4096,11 @@ DISTCHECK_CONFIGURE_FLAGS += \ endif hwdb-update: - ( cd hwdb && \ - wget -N http://www.linux-usb.org/usb.ids && \ - wget -N http://pci-ids.ucw.cz/v2.2/pci.ids && \ - wget -N http://standards.ieee.org/develop/regauth/oui/oui.txt && \ - wget -N http://standards.ieee.org/develop/regauth/iab/iab.txt && \ + ( 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 && \ ./ids-update.pl ) upload: all distcheck |