diff options
author | hasufell <julian.ospald@googlemail.com> | 2012-12-08 19:58:27 +0100 |
---|---|---|
committer | hasufell <julian.ospald@googlemail.com> | 2012-12-08 19:58:27 +0100 |
commit | 38b2fb2374ce735efc4ae2f98bab4abb79db7056 (patch) | |
tree | a1d645f9a73e8230167d04d5bc12f537fe23a04f /Makefile | |
parent | Fix the syntax. (diff) | |
download | hwids-38b2fb2374ce735efc4ae2f98bab4abb79db7056.tar.gz hwids-38b2fb2374ce735efc4ae2f98bab4abb79db7056.tar.bz2 hwids-38b2fb2374ce735efc4ae2f98bab4abb79db7056.zip |
fix posix compliance of Makefile
e.g. dash fails to run the for-loop arguments
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ install-base: compress mkdir -p $(DESTDIR)$(DOCDIR) install -p README.md $(DESTDIR)$(DOCDIR) mkdir -p $(DESTDIR)$(MISCDIR) - for file in {usb,pci}.ids{,.gz} {oui,iab}.txt; do \ + for file in usb.ids pci.ids usb.ids.gz pci.ids.gz oui.txt iab.txt; do \ install -p $$file $(DESTDIR)$(MISCDIR); \ done |