From 815d4a8aa853df0ff21b5feb259576b0441c9096 Mon Sep 17 00:00:00 2001 From: Adam Heath Date: Mon, 15 Sep 2003 02:46:14 +0000 Subject: [PATCH] Fix broken os_type detection on linux. --- ChangeLog | 4 ++++ configure.in | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f1ca9b57..875f2f40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Sep 14 21:45:44 CDT 2003 Adam Heath + + * configure.in: Fix broken os_type detection on linux. + Sun Sep 14 21:44:01 CDT 2003 Adam Heath * po/ca.po: Updated. diff --git a/configure.in b/configure.in index ec2b47c3..477973a5 100644 --- a/configure.in +++ b/configure.in @@ -99,8 +99,10 @@ AC_PREFIX_DEFAULT(/usr) os_type='' AC_MSG_CHECKING(Operating system type) case $target_os in + *linux-gnu* ) + os_type="linux-gnu";; *linux* ) - os_type="linux";; + os_type="linux-gnu";; *openbsd* ) os_type="openbsd";; *netbsd* ) -- 2.39.5