From 007b8656050c602e55777f0b64c366bb49b49b1a Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 10 Oct 1998 12:48:48 +0000 Subject: [PATCH] Don't build or install ${MAN1}. It's just a copy of ${MAN1aout} and installing it clobbers the elf ${MAN1}. The MAN1 -> MAN1aout changes actually work now. Fixed order of MAN* and BINDIR. --- usr.bin/ar/Makefile | 6 +++--- usr.bin/ranlib/Makefile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/usr.bin/ar/Makefile b/usr.bin/ar/Makefile index 6192cca9305..ec9b2629eaa 100644 --- a/usr.bin/ar/Makefile +++ b/usr.bin/ar/Makefile @@ -1,12 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $Id$ PROG= ar -BINDIR= /usr/libexec/aout -MAN1aout=ar.1aout CFLAGS+=-I${.CURDIR} SRCS= append.c ar.c archive.c contents.c delete.c extract.c misc.c \ move.c print.c replace.c -MAN1= ar.1 +MAN1aout=ar.1aout MAN5= ar.5 +BINDIR= /usr/libexec/aout .include diff --git a/usr.bin/ranlib/Makefile b/usr.bin/ranlib/Makefile index 5fb6e376728..60ba526cff8 100644 --- a/usr.bin/ranlib/Makefile +++ b/usr.bin/ranlib/Makefile @@ -1,12 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $Id$ PROG= ranlib -BINDIR= /usr/libexec/aout -MAN1aout=ranlib.1aout SRCS= archive.c build.c misc.c ranlib.c touch.c CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../ar -MAN1= ranlib.1 +MAN1aout=ranlib.1aout MAN5= ranlib.5 +BINDIR= /usr/libexec/aout VPATH= ${.CURDIR}/../ar .include