diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-11 16:35:08 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-11 16:35:08 +0000 |
commit | 4f50cac9418e88000376601af27a09c8625fadc2 (patch) | |
tree | 158f0514edfa52bf64fe0e5d35f49796a3d6b84d /sys/arch | |
parent | 96fd9216bba0389cc30f3202e1f66a741afdb776 (diff) |
use ${SIZE} instead of size, for cross
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/conf/Makefile.vax | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index a645463a0f7..16bba7212fa 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.9 1998/05/11 15:37:23 niklas Exp $ +# $OpenBSD: Makefile.vax,v 1.10 1998/05/11 16:35:07 niklas Exp $ # $NetBSD: Makefile.vax,v 1.32 1997/03/14 23:27:35 mycroft Exp $ # Makefile for OpenBSD @@ -26,6 +26,7 @@ CC?= cc LD?= ld MKDEP?= mkdep STRIP?= strip +SIZE?= size COPTS?= -O2 # source tree is located via $S relative to the compilation directory @@ -88,7 +89,7 @@ SYSTEM_DEP= Makefile ${SYSTEM_OBJ} SYSTEM_LD_HEAD= @rm -f $@ SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o -SYSTEM_LD_TAIL= @size $@; chmod 755 $@ +SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= .if ${DEBUG} == "-g" |