Since the makefiles below binutils with the architecture extension

are now included according to the cross-architecture support required,
default the BINDIR for i386 to /usr/libexec/elf here instead of in
all the i386 specific makefiles. For all other architectures, BINDIR
is just /usr/bin.
This commit is contained in:
John Birrell 1998-05-04 21:13:50 +00:00
parent dd67e6bff7
commit bb91c76f50

View File

@ -1,5 +1,9 @@
#
# $Id$
# $Id: Makefile.inc,v 1.1.1.1 1998/03/01 23:40:47 jdp Exp $
#
.if ${MACHINE_ARCH} == "i386"
BINDIR?= /usr/libexec/elf
.else
BINDIR?= /usr/bin
.endif