diff options
| author | 2010-12-02 20:57:06 +0000 | |
|---|---|---|
| committer | 2010-12-02 20:57:06 +0000 | |
| commit | e24565fd89426894316a2d1275117f8c35a453b6 (patch) | |
| tree | c7c8f8a57d0b74bda08fcc306b16094e56659cdb /sys/arch/sparc | |
| parent | The awk's split() starts numbering array indices at 1 not 0. (diff) | |
| download | wireguard-openbsd-e24565fd89426894316a2d1275117f8c35a453b6.tar.xz wireguard-openbsd-e24565fd89426894316a2d1275117f8c35a453b6.zip | |
After the most recent change, make it possible to make -j again. The
early MD and late MI files must be split up so that vers.o can sneak
between. Issue spotted by bluhm, repair discussed with miod
Diffstat (limited to 'sys/arch/sparc')
| -rw-r--r-- | sys/arch/sparc/conf/Makefile.sparc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sparc/conf/Makefile.sparc b/sys/arch/sparc/conf/Makefile.sparc index 1a7ce9ceadb..b440048e17e 100644 --- a/sys/arch/sparc/conf/Makefile.sparc +++ b/sys/arch/sparc/conf/Makefile.sparc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc,v 1.67 2010/12/02 04:35:03 deraadt Exp $ +# $OpenBSD: Makefile.sparc,v 1.68 2010/12/02 20:57:08 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -70,11 +70,11 @@ NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< # ${SYSTEM_LD_HEAD} # ${SYSTEM_LD} swapxxx.o # ${SYSTEM_LD_TAIL} -SYSTEM_OBJ= locore.o param.o ioconf.o vers.o ${OBJS} -SYSTEM_DEP= Makefile ${SYSTEM_OBJ} +SYSTEM_HEAD= locore.o param.o ioconf.o +SYSTEM_DEP= Makefile ${SYSTEM_HEAD} ${OBJS} SYSTEM_LD_HEAD= @rm -f $@ -SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}'; \ - ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} +SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_HEAD} vers.o $${OBJS}'; \ + ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_HEAD} vers.o ${OBJS} SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= |
