Date: Tue, 20 Oct 1998 20:08:20 +0400 (MSD) From: Andrew Maltsev <am@amsoft.ru> To: freebsd-current@FreeBSD.ORG Subject: minor problem with 3.0 build Message-ID: <199810201608.UAA10603@amsoft.ru>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810201608.UAA10603>
