From e8985fa56e809dbecaf39c52ec5a26ddc8e04ee2 Mon Sep 17 00:00:00 2001 From: Michal Vaner Date: Mon, 8 Sep 2008 22:03:34 +0200 Subject: [PATCH] Fix the export script it needs to be run from the perl directory --- scripts/pciids-export | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/pciids-export b/scripts/pciids-export index 0dd9e51..8989a91 100755 --- a/scripts/pciids-export +++ b/scripts/pciids-export @@ -21,9 +21,11 @@ set -e cp perl/cf/head.ids pci.ids.new -./perl/scripts/export.pl PC >> pci.ids.new -cat perl/cf/class_head.ids >> pci.ids.new -./perl/scripts/export.pl PD >> pci.ids.new +cd perl +./scripts/export.pl PC >> ../pci.ids.new +cat cf/class_head.ids >> ../pci.ids.new +./scripts/export.pl PD >> ../pci.ids.new +cd .. if ! [ -f docs/pci.ids ] || ! cmp static/pci.ids pci.ids.new >/dev/null ; then ln pci.ids.new ~/origs/00-current ln pci.ids.new docs/pci.ids -- 2.39.5