diff options
author | Peter Wemm <peter@FreeBSD.org> | 1996-05-05 07:40:46 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1996-05-05 07:40:46 +0000 |
commit | 257d5892a386439d8e2a59815d6b68e4f71e14ed (patch) | |
tree | 0f10b6f67c5cb0559224358df13f57e4f3013aa3 /usr.sbin/stallion | |
parent | d36a01efe4d86412acc5ee5d01126fd53516bf07 (diff) |
rm the files first before uudecoding, because the modes in the begin
line doesnt permit writes by the owner.. (oops!)
Notes
Notes:
svn path=/head/; revision=15633
Diffstat (limited to 'usr.sbin/stallion')
-rw-r--r-- | usr.sbin/stallion/bootcode/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/stallion/bootcode/Makefile b/usr.sbin/stallion/bootcode/Makefile index ea585e8d2ec5..35f3c8fdc1a7 100644 --- a/usr.sbin/stallion/bootcode/Makefile +++ b/usr.sbin/stallion/bootcode/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/05/04 08:02:10 peter Exp $ FILES = 2681.sys cdk.sys @@ -23,8 +23,10 @@ clean: .include <bsd.prog.mk> cdk.sys: ${.CURDIR}/cdk.sys.uu + @rm -f $@ uudecode ${.CURDIR}/$@.uu 2681.sys: ${.CURDIR}/2681.sys.uu + @rm -f $@ uudecode ${.CURDIR}/$@.uu |