From 6b53de4a19d011a2c9ab346ed0d6aff3726f5ef1 Mon Sep 17 00:00:00 2001 From: marcel Date: Wed, 19 Nov 2003 16:59:00 +0000 Subject: 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@ --- bin/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/Makefile.inc b/bin/Makefile.inc index 108488f..ef37f03 100644 --- a/bin/Makefile.inc +++ b/bin/Makefile.inc @@ -4,6 +4,6 @@ BINDIR?= /bin WARNS?= 6 -.if defined(NO_DYNAMICROOT) +.if defined(NO_DYNAMICROOT) || ${MACHINE_ARCH} == "ia64" NOSHARED?= YES .endif -- cgit v1.1