diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-21 13:22:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-21 13:22:54 +0000 |
commit | 9152dd81b85289febb444ca9839ccc2f56911330 (patch) | |
tree | 9c01fff30bae7c79a7a9787890796e24bfe3bb9d | |
parent | 5010a7efd350cda49a97168ee7c2b1a9e204c1c7 (diff) |
put libkern after libz
-rw-r--r-- | sys/arch/sgi/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/stand/boot/Makefile b/sys/arch/sgi/stand/boot/Makefile index a700082f7c7..92cdb5fbc72 100644 --- a/sys/arch/sgi/stand/boot/Makefile +++ b/sys/arch/sgi/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2005/04/27 03:06:22 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2005/07/21 13:22:53 deraadt Exp $ PROG= boot @@ -26,7 +26,7 @@ CLEANFILES+= machine mips64 ${PROG}: $(OBJS) $(LDADD) $(LD) $(LDFLAGS) -o boot $(OBJS) -L${LIBSADIR} ${LIBSA} \ - -L${LIBKERNDIR} ${LIBKERN} -L${LIBZDIR} ${LIBZ} + -L${LIBZDIR} ${LIBZ} -L${LIBKERNDIR} ${LIBKERN} install: |