diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-21 17:44:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-21 17:44:20 +0000 |
commit | c9f062e0e33eb618fe1780375d83b5835b3d6256 (patch) | |
tree | af3ac2b46e87b5717d7a7b2f9580e134a0b0c69d /sys/arch/mvmeppc/stand/bootxx | |
parent | 98af12722fd22abf2474c0e0ff0f0dea79c510ae (diff) |
No need to explicitely link with libgcc.a
Diffstat (limited to 'sys/arch/mvmeppc/stand/bootxx')
-rw-r--r-- | sys/arch/mvmeppc/stand/bootxx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvmeppc/stand/bootxx/Makefile b/sys/arch/mvmeppc/stand/bootxx/Makefile index 1f5fdf5af01..bb496d7cbbb 100644 --- a/sys/arch/mvmeppc/stand/bootxx/Makefile +++ b/sys/arch/mvmeppc/stand/bootxx/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.1 2001/06/26 21:58:01 smurph Exp $ +# $OpenBSD: Makefile,v 1.2 2001/08/21 17:44:19 miod Exp $ S= ${.CURDIR}/../../../.. DEFS=-DSTAGE2_RELOC=${STAGE2_RELOC} @@ -15,7 +15,7 @@ CLEANFILES+=bootxx SRCS= bootxx.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} ${LIBGCC} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} |