diff options
author | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2010-04-15 21:35:51 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2010-04-15 21:35:51 +0200 |
commit | b3ad0c3c6fce3c04a2f3070200001d6566d1b322 (patch) | |
tree | ce052edcb19a2c05c9a7f0251d2be5153ed3a3f1 /configure.ac | |
parent | 30e3b1a0d3a3ec76f16736470dc656744848d941 (diff) |
configure.ac - fix typo in --with-pci-ids-path option
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d53dd12a6c..492fa02242 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ if test "x$enable_extras" = xyes; then AC_CHECK_FILES([/usr/share/hwdata/pci.ids], [pciids=/usr/share/hwdata/pci.ids]) AC_CHECK_FILES([/usr/share/misc/pci.ids], [pciids=/usr/share/misc/pci.ids]) AC_ARG_WITH(pci-ids-path, - AS_HELP_STRING([--pci-ids-path=DIR], [Path to pci.ids file]), + AS_HELP_STRING([--with-pci-ids-path=DIR], [Path to pci.ids file]), [PCI_DATABASE=${withval}], [if test -n "$pciids" ; then PCI_DATABASE="$pciids" |