home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Wtestowe
/
Clico
/
UNIX
/
SAMBA
/
SOURCE
/
SAMBA.TAR
/
samba-1.9.17
/
source
/
checkos.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-07-15
|
594b
|
19 lines
#!/bin/sh
if [ x"$1" = x"" ]; then
cat << EOF
=====================================================================
You forgot to uncomment a host type and flags in the Makefile. If your
host type does not appear in the Makefile then choose one that you
think is similar and once you have it working then add a new host type
to the Makefile and includes.h. Please also send us the output of the
command "uname" on your system so this can be automated at some future
time.
samba-bugs@samba.anu.edu.au
=====================================================================
EOF
exit 1
fi
exit 0