From owner-freebsd-current Tue Oct 20 09:16:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02266 for freebsd-current-outgoing; Tue, 20 Oct 1998 09:16:10 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from amsoft.ru (amsoft.ru [194.87.86.241]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02124 for ; Tue, 20 Oct 1998 09:15:49 -0700 (PDT) (envelope-from am@amsoft.ru) Received: (from am@localhost) by amsoft.ru (8.8.8/amsoft/1.0) id UAA10603 for freebsd-current@freebsd.org; Tue, 20 Oct 1998 20:08:21 +0400 (MSD) From: Andrew Maltsev Message-Id: <199810201608.UAA10603@amsoft.ru> Subject: minor problem with 3.0 build To: freebsd-current@FreeBSD.ORG Date: Tue, 20 Oct 1998 20:08:20 +0400 (MSD) Organization: AM'soft X-Location: Oryol (http://www.oryol.ru/), Russia X-Phone: +7 086 229 9988 X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG src/gnu/usr.bin/binutils/strip/Makefile has the following lines: maybe_stripped: strip cp strip maybe_stripped .if defined(STRIP) .if ${STRIP:M-s} != "" strip maybe_stripped .endif .endif When the PATH defined as something like `PATH=.:/bin:/usr/bin:...' (yes, I know it's a Bad Thing) and strip was built in a.out format but without a.out support it tries to strip itself and fails. As a solution I used full path to a.out strip instead of calling it by PATH. Worked ok for me. Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message