diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-20 01:59:27 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-20 01:59:27 +0000 |
commit | ef75a40328fed4fc3da8e4e222e3b875db429cd1 (patch) | |
tree | 865a69b47d99d42c6601e807aa570a6acee6ab43 /benchmarks/tcpblast | |
parent | 1409841fc2948e7f8566c05cc67ad3c1ff927132 (diff) | |
download | ports-ef75a40328fed4fc3da8e4e222e3b875db429cd1.tar.gz ports-ef75a40328fed4fc3da8e4e222e3b875db429cd1.zip |
mkdir --> ${MKDIR}
cp --> ${CP}
rm --> ${RM}
Notes
Notes:
svn path=/head/; revision=4601
Diffstat (limited to 'benchmarks/tcpblast')
-rw-r--r-- | benchmarks/tcpblast/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/tcpblast/Makefile b/benchmarks/tcpblast/Makefile index 2738f9e83278..1d5b8ed7b926 100644 --- a/benchmarks/tcpblast/Makefile +++ b/benchmarks/tcpblast/Makefile @@ -3,7 +3,7 @@ # Date created: 22 August 1994 # Whom: mr # -# $Id: Makefile,v 1.9 1995/07/13 01:09:11 asami Exp $ +# $Id: Makefile,v 1.10 1995/11/22 11:37:02 asami Exp $ # DISTNAME= tcpblast @@ -18,7 +18,7 @@ fetch: pre-clean: @echo "===> Pre-clean for ${DISTNAME}" - @(rm -f ${.CURDIR}/tcpblast) + @(${RM} -f ${.CURDIR}/tcpblast) @(cd ${.CURDIR}/src; make clean) .include <bsd.port.mk> |