diff options
author | 2004-10-18 20:46:48 +0000 | |
---|---|---|
committer | 2004-10-18 20:46:48 +0000 | |
commit | 760f4f8a3609aa2b27ad09da6d02c7ddea1faac9 (patch) | |
tree | d7a6df2cb8e1d3a7f7af19d0eb8ad564bb62250e | |
parent | Update to tzdata2004e from elsie.nci.nih.gov (diff) | |
download | wireguard-openbsd-760f4f8a3609aa2b27ad09da6d02c7ddea1faac9.tar.xz wireguard-openbsd-760f4f8a3609aa2b27ad09da6d02c7ddea1faac9.zip |
Do not pass -print-map to the linker anymore, as we don't care about this
output.
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/Makefile b/sys/arch/sparc64/stand/ofwboot/Makefile index 28600b3765b..140a25b83fd 100644 --- a/sys/arch/sparc64/stand/ofwboot/Makefile +++ b/sys/arch/sparc64/stand/ofwboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2003/06/10 02:42:58 brad Exp $ +# $OpenBSD: Makefile,v 1.8 2004/10/18 20:46:48 miod Exp $ # $NetBSD: Makefile,v 1.2 2001/03/04 14:50:05 mrg Exp $ CURDIR= ${.CURDIR} @@ -58,7 +58,7 @@ vers.c: version sh ${S}/conf/newvers.sh ${CURDIR}/version "sparc64" ${NEWVERSWHAT} ${PROG}: ${OBJS} ${LIBSA} ${LIBZ} ${LIBKERN} - ${LD} -N -p -Ttext ${RELOC} -e ${ENTRY} >lderr -o ${PROG} \ + ${LD} -N -Ttext ${RELOC} -e ${ENTRY} -o ${PROG} \ ${OBJS} -L${LIBSADIR} ${LIBSA} -L${LIBKERNDIR} ${LIBKERN} \ -L${LIBZDIR} ${LIBZ} |