summaryrefslogtreecommitdiff
path: root/editors/wordperfect/files/uname
diff options
context:
space:
mode:
Diffstat (limited to 'editors/wordperfect/files/uname')
-rw-r--r--editors/wordperfect/files/uname18
1 files changed, 18 insertions, 0 deletions
diff --git a/editors/wordperfect/files/uname b/editors/wordperfect/files/uname
new file mode 100644
index 00000000000..1d5e94eacbe
--- /dev/null
+++ b/editors/wordperfect/files/uname
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# $NetBSD: uname,v 1.1.1.1 2000/08/25 01:07:29 jlam Exp $
+#
+# This emulates just enough of Linux uname to fool the installer.
+
+case $1 in
+-n) /usr/bin/uname -n
+ ;;
+-v) echo 6.x # SuSE 6.x
+ ;;
+-r) echo 2.0.37 # Linux kernel 2.0.37
+ ;;
+-m) /usr/bin/uname -m
+ ;;
+*) /usr/bin/uname $*
+ ;;
+esac