diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-12-08 12:51:10 +0100 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-12-08 12:51:10 +0100 |
commit | 231ab734044af347a6b2bf6baaef14edf0d9d1c9 (patch) | |
tree | df6bd88881dd1693536a4ac2724ccfd1b97d2809 | |
parent | Use a verbatim area instead of a quote for the BSD license. (diff) | |
download | hwids-231ab734044af347a6b2bf6baaef14edf0d9d1c9.tar.gz hwids-231ab734044af347a6b2bf6baaef14edf0d9d1c9.tar.bz2 hwids-231ab734044af347a6b2bf6baaef14edf0d9d1c9.zip |
Fix the syntax.hwids-20121208.5
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,11 +50,11 @@ install-base: compress install -p README.md $(DESTDIR)$(DOCDIR) mkdir -p $(DESTDIR)$(MISCDIR) for file in {usb,pci}.ids{,.gz} {oui,iab}.txt; do \ - install -p $$file $(DESTDIR)$(MISCDIR) + install -p $$file $(DESTDIR)$(MISCDIR); \ done install-hwdb: mkdir -p $(DESTDIR)$(HWDBDIR) for file in udev/*.hwdb; do \ - install -p $$file $(DESTDIR)$(HWDBDIR) + install -p $$file $(DESTDIR)$(HWDBDIR); \ done |