diff options
author | Bill Fenner <fenner@FreeBSD.org> | 2005-10-27 17:56:36 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 2005-10-27 17:56:36 +0000 |
commit | 0b7c7f763a95d1fc5b715b292097781446cdcf07 (patch) | |
tree | 74da1c74e7bcd80541d72d3f3e09172457d0e2fe | |
parent | 5b0dca02e945dfce666fc5ac273712fe81cc14eb (diff) |
Fix turd removal.
Pointy hat to: me, courtesy of pointyhat
Notes
Notes:
svn path=/head/; revision=146503
-rw-r--r-- | benchmarks/lmbench/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/lmbench/Makefile b/benchmarks/lmbench/Makefile index dec154c3bd51..36f875973bb7 100644 --- a/benchmarks/lmbench/Makefile +++ b/benchmarks/lmbench/Makefile @@ -52,7 +52,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} ${WRKSRC}/bin/*.[os] + @${RM} -f ${WRKSRC}/bin/*/*.[os] pre-install: [ -d ${PREFIX}/lib/lmbench ] || ${MKDIR} ${PREFIX}/lib/lmbench |