diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-23 15:52:03 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-23 15:53:03 +0000 |
commit | 3c851dfdeee3171b62a9b8680386991f08d55645 (patch) | |
tree | 1c4b9b282539711f88700baa3327bebb90afc7b7 | |
parent | e389805e1dcc81cd35355539643a41976576dfcb (diff) | |
download | ports-3c851dfdeee3171b62a9b8680386991f08d55645.tar.gz ports-3c851dfdeee3171b62a9b8680386991f08d55645.zip |
benchmarks/ramspeed: Fix build with llvm16
- Pet portclippy
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | benchmarks/ramspeed/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/benchmarks/ramspeed/Makefile b/benchmarks/ramspeed/Makefile index e51e5bc0279d..7096e14b8d70 100644 --- a/benchmarks/ramspeed/Makefile +++ b/benchmarks/ramspeed/Makefile @@ -14,6 +14,8 @@ LICENSE_NAME= Alasir Licence LICENSE_FILE= ${WRKSRC}/LICENCE LICENSE_PERMS= dist-mirror no-dist-sell pkg-mirror no-pkg-sell +USE_BINUTILS= yes + PLIST_FILES= bin/ramspeed PORTDOCS= HISTORY README @@ -24,6 +26,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ramsmp ${STAGEDIR}${PREFIX}/bin/ramspeed + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|g} ${STAGEDIR}${DOCSDIR} |