diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2025-05-10 13:31:14 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2025-05-10 13:31:14 +0000 |
commit | b6ed5a7a19397b762133f7fcd11af6a3495ee1c7 (patch) | |
tree | 87320b894260e5606a5ae67267b8d6491489f410 | |
parent | devel/p5-Connector: Update 1.54 => 1.55 (diff) |
editors/mle: GC no longer needed GNU tools from TEST_DEPENDS
Obsoleted by portability fixes made upstream in May 2020 but
never cleaned up.
-rw-r--r-- | editors/mle/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/editors/mle/Makefile b/editors/mle/Makefile index a9cda6cb6e2c..c59035d6059d 100644 --- a/editors/mle/Makefile +++ b/editors/mle/Makefile @@ -12,10 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/uthash.h:devel/uthash LIB_DEPENDS= libpcre2-8.so:devel/pcre2 -TEST_DEPENDS= ${LOCALBASE}/bin/gpaste:sysutils/coreutils \ - ${LOCALBASE}/bin/grep:textproc/gnugrep \ - bash:shells/bash \ - gfind:misc/findutils +TEST_DEPENDS= bash:shells/bash USES= compiler:c11 gmake localbase:ldflags shebangfix lua:54 SHEBANG_FILES= tests/func/*.sh tests/run.sh @@ -30,14 +27,6 @@ post-patch: @${REINPLACE_CMD} -e 's|lua5.4|lua-5.4|g' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|-O0|-O2|g' ${WRKSRC}/Makefile - # Fix shell commands in tests - @${REINPLACE_CMD} -e 's|find|gfind|g' \ - -e 's|grep|${LOCALBASE}/bin/grep|g' \ - ${WRKSRC}/tests/run.sh \ - ${WRKSRC}/tests/func/*.sh - @${REINPLACE_CMD} -e 's|p a s t e|g p a s t e|g' \ - ${WRKSRC}/tests/func/test_lua.sh - # Remove assertions that rely on GNU tooling output @${REINPLACE_CMD} -e '/shell_line/d' \ ${WRKSRC}/tests/func/test_multi_cursor.sh |