# HG changeset patch # User diego # Date 1262640153 0 # Node ID 84f7e547aaf2167ff50a2a1b1b47e4a1ba88b523 # Parent e11d2e31353cef26d57d38704e4c1e9e60f97d11 Invoke pci_db2c.awk as an argument to awk instead of letting the shell run it. The shell looks for awk in /usr/bin, the path from the shebang line. However, there exist systems with awk in /bin, namely archlinux. diff -r e11d2e31353c -r 84f7e547aaf2 Makefile --- a/Makefile Mon Jan 04 21:10:15 2010 +0000 +++ b/Makefile Mon Jan 04 21:22:33 2010 +0000 @@ -901,7 +901,7 @@ vidix/pci_vendors.h $(VIDIX_PCI_FILES): vidix/pci_db2c.awk vidix/pci.db - $^ $(VIDIX_PCIDB) + awk -f $^ $(VIDIX_PCIDB) VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d)) VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o))