diff options
author | sos <sos@FreeBSD.org> | 1998-05-25 17:34:42 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 1998-05-25 17:34:42 +0000 |
commit | ea8b97a0939c1de01759e77cf2d725439764f611 (patch) | |
tree | 08825db7b10675d1a0c775679f232601031d5162 /usr.bin/strip | |
parent | 872aa46bafaaa0870fa3f8fbeb7ff42117e6af12 (diff) | |
download | FreeBSD-src-ea8b97a0939c1de01759e77cf2d725439764f611.zip FreeBSD-src-ea8b97a0939c1de01759e77cf2d725439764f611.tar.gz |
ELF preparation step 1:
Move our old a.out utils to /usr/libexec/aout.
Enable binutils and put the utils in /usr/libexec/elf
Enable objformat, a little helper program that calls the right
utils based on /etc/objformat and $OBJFORMAT.
This will enable the ELF generating tools.
Remember that this is only step one, the system is still compiled
and run in a.out format ONLY.
Problem left to solve: The BSD manpages wins over the GNU equivalents
as the are installed last. We need to distinguish between the manpages
somehow...
Diffstat (limited to 'usr.bin/strip')
-rw-r--r-- | usr.bin/strip/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index 3d19864..9911892 100644 --- a/usr.bin/strip/Makefile +++ b/usr.bin/strip/Makefile @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= strip +BINDIR= /usr/libexec/aout MAN1= strip.1 CLEANFILES += maybe_stripped |