From 657bd95db1ed0fa31455cfeb01685f4c0552933b Mon Sep 17 00:00:00 2001 From: Marek Cruz Date: Tue, 31 Jan 2012 10:50:47 -0500 Subject: [PATCH] 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. --- lib/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"' -- 2.39.2