diff options
| author | 2010-12-30 18:49:29 +0000 | |
|---|---|---|
| committer | 2010-12-30 18:49:29 +0000 | |
| commit | 08ca11b47e006209fdb512a841127d58beb2e858 (patch) | |
| tree | e0143a39b471f594d4c5539d7aebe93b313fa44c /sys/arch/sparc | |
| parent | Regen. (diff) | |
| download | wireguard-openbsd-08ca11b47e006209fdb512a841127d58beb2e858.tar.xz wireguard-openbsd-08ca11b47e006209fdb512a841127d58beb2e858.zip | |
If genassym fails, sort on the pipeline will indicate no error resulting
in some grief. Split this out.
From Vladimir Kirillov
Diffstat (limited to 'sys/arch/sparc')
| -rw-r--r-- | sys/arch/sparc/conf/Makefile.sparc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/sparc/conf/Makefile.sparc b/sys/arch/sparc/conf/Makefile.sparc index b440048e17e..2165a805a78 100644 --- a/sys/arch/sparc/conf/Makefile.sparc +++ b/sys/arch/sparc/conf/Makefile.sparc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc,v 1.68 2010/12/02 20:57:08 deraadt Exp $ +# $OpenBSD: Makefile.sparc,v 1.69 2010/12/30 18:49:31 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -94,9 +94,8 @@ LINKFLAGS+= -S -x assym.h: $S/kern/genassym.sh Makefile \ ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \ - sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} | \ - sort -u > assym.h.tmp && \ - mv -f assym.h.tmp assym.h + sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} > assym.h.tmp + sort -u assym.h.tmp > assym.h param.c: $S/conf/param.c rm -f param.c |
