diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-27 15:33:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-27 15:33:09 +0000 |
commit | dc718fc5fe36aab22ba7c10c963276a6b445c47a (patch) | |
tree | f6f8db8cf513311527dab9ca1977b059e1de211a /sys/arch/beagle | |
parent | d852b9cd09ca02db546e8bb48cfea8af6f268d0c (diff) |
teeny bit more unification
Diffstat (limited to 'sys/arch/beagle')
-rw-r--r-- | sys/arch/beagle/conf/Makefile.beagle | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/beagle/conf/Makefile.beagle b/sys/arch/beagle/conf/Makefile.beagle index 313fb169b71..cc0154915e2 100644 --- a/sys/arch/beagle/conf/Makefile.beagle +++ b/sys/arch/beagle/conf/Makefile.beagle @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.beagle,v 1.16 2010/04/27 06:46:25 deraadt Exp $ +# $OpenBSD: Makefile.beagle,v 1.17 2010/04/27 15:33:08 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -87,11 +87,9 @@ SYSTEM_OBJ= ${_mach}_start.o locore.o param.o ioconf.o ${OBJS} SYSTEM_DEP= Makefile ${SYSTEM_OBJ} SYSTEM_LD_HEAD= rm -f $@ SYSTEM_LD_HEAD+=; \ - ( cat ${_archdir}/conf/ldscript.head ;\ - cat ${_archdir}/conf/ldscript.tail ) | \ - sed -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \ - -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' \ - > ldscript + cat ${_archdir}/conf/ldscript.head ${_archdir}/conf/ldscript.tail | \ + sed -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \ + -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' > ldscript SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o |