mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
15 lines
407 B
Bash
Executable File
15 lines
407 B
Bash
Executable File
#!/bin/sh
|
|
os=`./config.guess`
|
|
case "$os" in
|
|
sparc-sun-sunos*) echo sunos4 ;;
|
|
sparc-sun-solaris1*) echo sunos4 ;;
|
|
*-*-solaris2*) echo sunos5 ;;
|
|
alpha-dec-osf1) echo osf1 ;;
|
|
*-apple-darwin*) echo darwin ;;
|
|
*-*-linux*) echo linux ;;
|
|
*-*-openbsd*) echo openbsd ;;
|
|
*-*-freebsd*) echo freebsd ;;
|
|
esac
|
|
### Don't leave the variable set.
|
|
unset os
|