From: Marek Cruz Date: Tue, 31 Jan 2012 15:50:47 +0000 (-0500) Subject: lib/configure: match all freebsd os's X-Git-Tag: v3.2.1~23 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=657bd95db1ed0fa31455cfeb01685f4c0552933b;p=pciutils.git lib/configure: match all freebsd os's When using targets like "i686-pc-freebsd7.1", the configure script fails to match for the freebsd target because it only expects "freebsd". Add a glob to match all freebsd targets. --- diff --git a/lib/configure b/lib/configure index 4b58c74..27388bc 100755 --- a/lib/configure +++ b/lib/configure @@ -86,7 +86,7 @@ case $sys in esac echo >>$c '#define PCI_HAVE_STDINT_H' ;; - freebsd) + freebsd*) echo_n " fbsd-device" echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE' echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'