]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/objformat/objformat.sh
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / objformat / objformat.sh
1 #! /bin/sh
2 # $FreeBSD$
3 # /usr/bin/objformat has been obsolete and deprecated for years.
4 # Please remove any build/configure script references.  New software
5 # should only have to only support elf on FreeBSD.
6 #
7 # FreeBSD-2.0, 2.1.x and 2.2.x will use a.out
8 # FreeBSD-3.x will have a real /usr/bin/objformat and are more likely
9 #  to be elf than a.out.
10 # Assume that FreeBSD-4.x will be using elf even though it is
11 #  **theoretically** possible to build an a.out world.
12 # FreeBSD-5.x and higher only support elf.
13 #
14
15 echo '========================================================' 1>&2
16 echo '== PLEASE REMOVE ALL REFERENCES TO /usr/bin/objformat ==' 1>&2
17 echo '=========== IT HAS BEEN OBSOLETE FOR YEARS! ====-=======' 1>&2
18 echo '========================================================' 1>&2
19 (echo '========================================================' >/dev/tty) 2>/dev/null
20 (echo '== PLEASE REMOVE ALL REFERENCES TO /usr/bin/objformat ==' >/dev/tty) 2>/dev/null
21 (echo '=========== IT HAS BEEN OBSOLETE FOR YEARS! ====-=======' >/dev/tty) 2>/dev/null
22 (echo '========================================================' >/dev/tty) 2>/dev/null
23 # highlight the nag or it will never be fixed!
24 sleep 10
25 echo elf
26 exit 0