diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-21 15:01:40 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-21 15:01:40 +0000 |
commit | 5d93cb16917fc61776c42af26330311149b8bbae (patch) | |
tree | e737105da6a148fbfa0d330942a5bed18164bc23 /sys/lib/libkern | |
parent | 40a20531acf4ad833e311aa1e1cc96024a1af31d (diff) |
use right lorder; niklas@ ok
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/Makefile b/sys/lib/libkern/Makefile index 17f1e76bb79..04b9c549a0f 100644 --- a/sys/lib/libkern/Makefile +++ b/sys/lib/libkern/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 1998/03/18 20:47:04 mickey Exp $ +# $OpenBSD: Makefile,v 1.13 1999/05/21 15:01:39 mickey Exp $ # $NetBSD: Makefile,v 1.31 1996/08/10 04:01:31 mycroft Exp $ LIB= kern @@ -40,10 +40,10 @@ install: lib${LIB}.o:: ${OBJS} @echo building standard ${LIB} library @rm -f lib${LIB}.o - @${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort` + @${LD} -r -o lib${LIB}.o `${LORDER} ${OBJS} | tsort` POBJS+= ${OBJS:.o=.po} mcount.po lib${LIB}.po:: ${POBJS} @echo building profiled ${LIB} library @rm -f lib${LIB}.po - @${LD} -r -o lib${LIB}.po `lorder ${POBJS} | tsort` + @${LD} -r -o lib${LIB}.po `${LORDER} ${POBJS} | tsort` |