]> err.no Git - dpkg/commitdiff
Fix broken os_type detection on linux.
authorAdam Heath <doogie@debian.org>
Mon, 15 Sep 2003 02:46:14 +0000 (02:46 +0000)
committerAdam Heath <doogie@debian.org>
Mon, 15 Sep 2003 02:46:14 +0000 (02:46 +0000)
ChangeLog
configure.in

index f1ca9b57012922c2b4e651292319f3461022a3de..875f2f400b66f97d6f34faea59dbc325f09a105a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 14 21:45:44 CDT 2003 Adam Heath <doogie@debian.org>
+
+  * configure.in: Fix broken os_type detection on linux.
+
 Sun Sep 14 21:44:01 CDT 2003 Adam Heath <doogie@debian.org>
 
   * po/ca.po: Updated.
index ec2b47c34185e79bdd5f9bcea5a6a45970ccb30a..477973a5514d080cfd5e6cc61a8173b3be8cd935 100644 (file)
@@ -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* )