From: Adam Heath Date: Mon, 15 Sep 2003 02:46:14 +0000 (+0000) Subject: Fix broken os_type detection on linux. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=815d4a8aa853df0ff21b5feb259576b0441c9096;p=dpkg Fix broken os_type detection on linux. --- 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* )