diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-27 16:54:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-27 16:54:55 +0000 |
commit | 147d62531a4c937c43d846e66b15dc926fb8d776 (patch) | |
tree | 6124191f3d143a1768b049614142b5a52323324b /sys/arch/sgi | |
parent | 50c901d35251f10d0ef363f25fa90a6555c0083f (diff) |
Unifity CPPFLAGS= (using ${_mach}), SYSTEM_LD_TAIL= (always on one line),
and SRCS= (common files always after the \)
Diffstat (limited to 'sys/arch/sgi')
-rw-r--r-- | sys/arch/sgi/conf/Makefile.sgi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/sgi/conf/Makefile.sgi b/sys/arch/sgi/conf/Makefile.sgi index ab58495d989..29ae699b6a6 100644 --- a/sys/arch/sgi/conf/Makefile.sgi +++ b/sys/arch/sgi/conf/Makefile.sgi @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sgi,v 1.36 2010/04/27 16:50:15 jsg Exp $ +# $OpenBSD: Makefile.sgi,v 1.37 2010/04/27 16:54:54 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -84,9 +84,7 @@ SYSTEM_LD= @if [ X${DEBUG} = X-g ]; \ -Ttext=${LINK_ADDRESS} '$${SYSTEM_OBJ}' vers.o; \ ${LD} $$strip -o $@ -e start -T ${_machdir}/conf/ld.script \ -Ttext=${LINK_ADDRESS} ${SYSTEM_OBJ} vers.o -# -SYSTEM_LD_TAIL= chmod 755 $@; \ - ${SIZE} $@ +SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= .if ${DEBUG} == "-g" |