diff options
author | hasso <hasso> | 2005-02-19 13:58:06 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-02-19 13:58:06 +0000 |
commit | b3da91f8aa2fec61dabe89484fba32031e906aa2 (patch) | |
tree | 985386d4f1b0339a04f29fd68db8f64eac7bc301 | |
parent | 79151801e4c8fb5cf73bade9af86545105523c7f (diff) | |
download | quagga-b3da91f8aa2fec61dabe89484fba32031e906aa2.tar.bz2 quagga-b3da91f8aa2fec61dabe89484fba32031e906aa2.tar.xz |
* configure.ac: Fix Linux detection. Host types like i686-pc-linux
didn't match the pattern.
Fixes bugzilla #150. [backport candidate]
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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. diff --git a/configure.ac b/configure.ac index 81bb0501..1280d37b 100755 --- a/configure.ac +++ b/configure.ac @@ -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) ;; |