Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Oct 2025 10:02:06 GMT
From:      Ashish SHUKLA <ashish@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: f514e90a1463 - 2025Q4 - editors/helix: Unbreak on FreeBSD > 14
Message-ID:  <202510241002.59OA26Mh012533@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch 2025Q4 has been updated by ashish:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f514e90a1463ba9aac75d7707b0f2defbe49c25c

commit f514e90a1463ba9aac75d7707b0f2defbe49c25c
Author:     Ashish SHUKLA <ashish@FreeBSD.org>
AuthorDate: 2025-10-23 18:14:19 +0000
Commit:     Ashish SHUKLA <ashish@FreeBSD.org>
CommitDate: 2025-10-24 10:01:44 +0000

    editors/helix: Unbreak on FreeBSD > 14
    
    - Switch from cp to install due to change in behaviour of cp in
      FreeBSD 15
    
    PR:             289051
    MFH:            2025Q4 (unbreaks on FreeBSD 15)
    (cherry picked from commit 8fea7e6bfd381b919ef3357155929d695df1f5d6)
---
 editors/helix/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/editors/helix/Makefile b/editors/helix/Makefile
index d4981959a11a..78ef2329406b 100644
--- a/editors/helix/Makefile
+++ b/editors/helix/Makefile
@@ -291,8 +291,8 @@ post-extract:
 	${MV} ${WRKDIR}/tree-sitter-wren-${TREE_SITTER_WREN_REV} ${WRKSRC}/runtime/grammars/sources/wren
 	${MV} ${WRKDIR}/tree-sitter-gemini-${TREE_SITTER_GEMINI_REV} ${WRKSRC}/runtime/grammars/sources/gemini
 	${MV} ${WRKDIR}/tree-sitter-prolog ${WRKSRC}/runtime/grammars/sources/prolog
-	${CP} -R ${DISTDIR}/${TREE_SITTER_TSHIGH_REV}-ts-highlights.scm ${WRKSRC}/runtime/grammars/sources/qmljs/queries/highlights-typescript.scm
-	${CP} -R ${DISTDIR}/${TREE_SITTER_JSHIGH_REV}-js-highlights.scm ${WRKSRC}/runtime/grammars/sources/qmljs/queries/highlights-javascript.scm
+	${INSTALL} ${DISTDIR}/${TREE_SITTER_TSHIGH_REV}-ts-highlights.scm ${WRKSRC}/runtime/grammars/sources/qmljs/queries/highlights-typescript.scm
+	${INSTALL} ${DISTDIR}/${TREE_SITTER_JSHIGH_REV}-js-highlights.scm ${WRKSRC}/runtime/grammars/sources/qmljs/queries/highlights-javascript.scm
 
 post-install:
 	${MKDIR} ${STAGEDIR}${DATADIR}/runtime/grammars


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202510241002.59OA26Mh012533>