summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorhasso <hasso>2005-02-19 13:58:06 +0000
committerhasso <hasso>2005-02-19 13:58:06 +0000
commitc45eb839ae2aac88372180fda8ce90dc1abefe2f (patch)
tree2afa3277c4049058c03425325a5267e2a720e332 /configure.ac
parente31f22999430d37acbb7706d8fb5dd613ee51150 (diff)
* configure.ac: Fix Linux detection. Host types like i686-pc-linux
didn't match the pattern. Fixes bugzilla #150. [backport candidate]
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b2101b39..3bc18d78 100755
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@
## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
##
-## $Id: configure.ac,v 1.88 2005/01/24 10:24:31 paul Exp $
+## $Id: configure.ac,v 1.89 2005/02/19 13:58:06 hasso Exp $
AC_PREREQ(2.53)
AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net])
@@ -296,7 +296,7 @@ case "$host" in
AC_CHECK_LIB(nsl, main)
CURSES=-lcurses
;;
- *-linux-*)
+ *-linux*)
opsys=gnu-linux
AC_DEFINE(GNU_LINUX,,GNU Linux)
;;