]> git.puffer.fish Git - mirror/frr.git/commitdiff
* configure.ac: Fix Linux detection. Host types like i686-pc-linux
authorhasso <hasso>
Sat, 19 Feb 2005 13:58:06 +0000 (13:58 +0000)
committerhasso <hasso>
Sat, 19 Feb 2005 13:58:06 +0000 (13:58 +0000)
  didn't match the pattern.

Fixes bugzilla #150. [backport candidate]

ChangeLog
configure.ac

index c3c524cff6b9171867075e4eb091df34471e1241..d6245978b04b00506fa04f5e3fc3a60b8c7a27f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-19 Hasso Tepper <hasso at quagga.net>
+
+       * configure.ac: Fix Linux detection. Host types like i686-pc-linux
+         didn't match the pattern.
+
 2005-02-09 Paul Jakma <paul.jakma@sun.com>
 
        * (global) Update code to match stream.h changes.
index b2101b399bd9e7908b8ab9fb2f76eabca85fb773..3bc18d78bafc3b2e1de75951d8d574c328c79b52 100755 (executable)
@@ -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)
   ;;