projects
/
oweals
/
hwids.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
231ab73
)
fix posix compliance of Makefile
2/head
author
hasufell
<julian.ospald@googlemail.com>
Sat, 8 Dec 2012 18:58:27 +0000
(19:58 +0100)
committer
hasufell
<julian.ospald@googlemail.com>
Sat, 8 Dec 2012 18:58:27 +0000
(19:58 +0100)
e.g. dash fails to run the for-loop arguments
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 2556641316fd5b74ca09618a5e1f928ca2928ad0..ae0d66bbc828cf9b827cfdec9aba9189ed29d44e 100644
(file)
--- 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