diff options
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/conf/Makefile.vax | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index 1d18570ebca..b4b524d9528 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.49 2010/05/24 17:49:37 deraadt Exp $ +# $OpenBSD: Makefile.vax,v 1.50 2010/05/24 19:58:51 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -81,7 +81,7 @@ DEBUG?= .if ${DEBUG} == "-g" LINKFLAGS+= -X SYSTEM_LD_TAIL+=; \ - echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \ + echo mv $@ $@.gdb; rm -f $@.gdb; mv $@ $@.gdb; \ echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \ ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb .else |