From 38b2fb2374ce735efc4ae2f98bab4abb79db7056 Mon Sep 17 00:00:00 2001 From: hasufell Date: Sat, 8 Dec 2012 19:58:27 +0100 Subject: [PATCH] fix posix compliance of Makefile e.g. dash fails to run the for-loop arguments --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2556641..ae0d66b 100644 --- a/Makefile +++ b/Makefile @@ -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 -- 2.25.1