From: YONETANI Tomokazu Date: Fri, 9 Oct 2009 15:51:12 +0000 (+0900) Subject: Unbreak building vkernel by not linking against -lthread_xu. X-Git-Url: https://gitweb.dragonflybsd.org/~polachok/dragonfly.git/commitdiff_plain/f956eae6df5d3d461e460f70d43d2c164d89eab8 Unbreak building vkernel by not linking against -lthread_xu. --- diff --git a/sys/platform/vkernel/conf/Makefile b/sys/platform/vkernel/conf/Makefile index 1505dc1a7d..8ac1446909 100644 --- a/sys/platform/vkernel/conf/Makefile +++ b/sys/platform/vkernel/conf/Makefile @@ -15,7 +15,7 @@ S= ../.. # Override the normal kernel link and link as a normal user program # -SYSTEM_LD= @${CC} -g -export-dynamic -o ${.TARGET} ${SYSTEM_OBJS} vers.o -lthread_xu +SYSTEM_LD= @${CC} -g -export-dynamic -o ${.TARGET} ${SYSTEM_OBJS} vers.o -pthread %BEFORE_DEPEND