From b1892a0c0aeb2181513e0b8d1f0a7f04d1b205cf Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 30 Dec 2010 18:49:32 +0000 Subject: If genassym fails, sort on the pipeline will indicate no error resulting in some grief. Split this out. From Vladimir Kirillov --- sys/arch/vax/conf/Makefile.vax | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sys/arch/vax/conf') diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index 0e24413dcb0..384d8fe64a9 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.60 2010/12/02 20:57:08 deraadt Exp $ +# $OpenBSD: Makefile.vax,v 1.61 2010/12/30 18:49:31 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -91,9 +91,8 @@ LINKFLAGS+= -S 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 -- cgit v1.2.3