Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Oct 2025 10:01:22 GMT
From:      Ashish SHUKLA <ashish@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 8fea7e6bfd38 - main - editors/helix: Unbreak on FreeBSD > 14
Message-ID:  <202510241001.59OA1MvE008158@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by ashish:

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

commit 8fea7e6bfd381b919ef3357155929d695df1f5d6
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:00:48 +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)
---
 editors/helix/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/editors/helix/Makefile b/editors/helix/Makefile
index a96855d76645..c33bd5ddf06a 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?202510241001.59OA1MvE008158>