freebsd-dev/sbin/Makefile.inc
Marcel Moolenaar bd8477d623 Force a staticly linked /bin and /sbin for ia64. The necessary changes
to gcc have not been made for ia64, which means that executables still
have /usr/libexec/ld-elf.so.1 as the dynamic linker. This simply does
not work if /usr is a seperate filesystem not mounted when the kernel
tries to execute init(8).

Note that this is a temporary fix until a new gcc has been imported
that does have the required changes.

Approved: re@
2003-11-19 16:59:00 +00:00

10 lines
159 B
Makefile

# @(#)Makefile.inc 8.1 (Berkeley) 6/8/93
# $FreeBSD$
BINDIR?= /sbin
WARNS?= 2
.if defined(NO_DYNAMICROOT) || ${MACHINE_ARCH} == "ia64"
NOSHARED?= YES
.endif