home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / samba-1.9.18p7.tar.gz / samba-1.9.18p7.tar / samba-1.9.18p7 / source / checkos.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-07-03  |  594b  |  19 lines

  1. #!/bin/sh
  2. if [ x"$1" = x"" ]; then
  3. cat << EOF
  4. =====================================================================
  5. You forgot to uncomment a host type and flags in the Makefile. If your
  6. host type does not appear in the Makefile then choose one that you
  7. think is similar and once you have it working then add a new host type
  8. to the Makefile and includes.h. Please also send us the output of the
  9. command "uname" on your system so this can be automated at some future
  10. time. 
  11.  
  12. samba-bugs@samba.anu.edu.au
  13. =====================================================================
  14. EOF
  15. exit 1
  16. fi
  17.  
  18. exit 0
  19.