diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-10-21 12:51:40 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-10-21 12:51:40 +0000 |
commit | eabbfd75e30148b8f686899a638b93547ca83485 (patch) | |
tree | 5b70e6802d6d9dfe8b4564fc4f09f2d0a5156343 /benchmarks | |
parent | devel/nspr: update to 4.13.1 (diff) |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/flowgrind/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/lmbench/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/nqueens/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/siege/Makefile | 4 | ||||
-rw-r--r-- | benchmarks/unixbench/Makefile | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/benchmarks/flowgrind/Makefile b/benchmarks/flowgrind/Makefile index 506cd3e3509d..c6ad32ff976d 100644 --- a/benchmarks/flowgrind/Makefile +++ b/benchmarks/flowgrind/Makefile @@ -24,7 +24,7 @@ CONFIGURE_ARGS= --enable-pcap --enable-gsl CONFIGURE_ENV= LIBS="${LIBS} -lpcap" post-patch: - @${RM} -rf ${WRKSRC}/build-aux + @${RM} -r ${WRKSRC}/build-aux @${REINPLACE_CMD} -e 's|AC_LIB_RPATH||g' ${WRKSRC}/configure.ac .include <bsd.port.mk> diff --git a/benchmarks/lmbench/Makefile b/benchmarks/lmbench/Makefile index 853ab774874c..ee74b5417e59 100644 --- a/benchmarks/lmbench/Makefile +++ b/benchmarks/lmbench/Makefile @@ -40,7 +40,7 @@ post-extract: # Clean up turds from building the library. Some systems just have # .o, some also end up with .s, so clean up both. post-build: - @${RM} -f ${WRKSRC}/bin/*/*.[os] + @${RM} ${WRKSRC}/bin/*/*.[os] do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/lmbench diff --git a/benchmarks/nqueens/Makefile b/benchmarks/nqueens/Makefile index 6c59879d19a2..6a428e816ca1 100644 --- a/benchmarks/nqueens/Makefile +++ b/benchmarks/nqueens/Makefile @@ -35,7 +35,7 @@ PROGS+= qn24b_mpi .endif post-extract: - @${RM} -f ${WRKSRC}/qn24b_base + @${RM} ${WRKSRC}/qn24b_base do-build: cd ${WRKSRC} && \ diff --git a/benchmarks/siege/Makefile b/benchmarks/siege/Makefile index 89220f3d2bea..5fa3c93d2e85 100644 --- a/benchmarks/siege/Makefile +++ b/benchmarks/siege/Makefile @@ -20,7 +20,7 @@ CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} --disable-shared \ --sysconfdir=${ETCDIR} pre-configure: - @${RM} -f ${WRKSRC}/acinclude.m4 - @${RM} -f ${WRKSRC}/utils/missing + @${RM} ${WRKSRC}/acinclude.m4 + @${RM} ${WRKSRC}/utils/missing .include <bsd.port.mk> diff --git a/benchmarks/unixbench/Makefile b/benchmarks/unixbench/Makefile index 3e4b6b42bad8..57c9802450dd 100644 --- a/benchmarks/unixbench/Makefile +++ b/benchmarks/unixbench/Makefile @@ -17,7 +17,7 @@ SUB_FILES= unixbench MAKE_JOBS_UNSAFE= yes post-extract: - ${RM} -f ${WRKSRC}/pgms/select + ${RM} ${WRKSRC}/pgms/select do-install: ${INSTALL_SCRIPT} ${WRKDIR}/unixbench ${STAGEDIR}${PREFIX}/bin/ |