blob: 7d0da491fe16b0a3efea2e140182c58c66260a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-configure,v 1.1 2012/02/22 09:50:24 cheusov Exp $
# PR 42289
--- configure.orig 2011-11-09 11:58:39.000000000 +0000
+++ configure
@@ -24066,8 +24066,8 @@ else
fi
-# Check if /dev/vcsa1 exists, if so, define LINUX
- if test -c /dev/vcsa1; then
+# Define LINUX_TRUE on Linux
+ if test `uname -s` = Linux; then
LINUX_TRUE=
LINUX_FALSE='#'
else
|