pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

(devel/flim) Use GREP/EGREP and fix regexp.



Module Name:	pkgsrc-wip
Committed By:	Makoto Fujiwara <makoto%if.t.u-tokyo.ac.jp@localhost>
Pushed By:	mef
Date:		Thu Aug 31 19:15:08 2023 +0900
Changeset:	1afe9482faa17ea07930df7ab38c3c3fc08eb34e

Modified Files:
	flim/Makefile

Log Message:
(devel/flim) Use GREP/EGREP and fix regexp.

date: 2017-04-19 01:26:45 +0900;  author: jperkin;  state: Exp;  lines: +2 -2;  commitid: QIfiNtf3cXc8d2Oz;

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=1afe9482faa17ea07930df7ab38c3c3fc08eb34e

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 flim/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diffs:
diff --git a/flim/Makefile b/flim/Makefile
index 2894a02b35..976f8bda0c 100644
--- a/flim/Makefile
+++ b/flim/Makefile
@@ -49,7 +49,7 @@ post-build:
 
 do-install: plist
 	cd ${WRKSRC};							\
-	grep -v '^@' ${PLIST} | grep -E '/site-(|packages/)lisp/flim/' | \
+	${GREP} -v '^@' ${PLIST} | ${EGREP} '/site-(packages/)?lisp/flim/' | \
 	while read file; do						\
 		file=$$( basename $$file );				\
 		${INSTALL_DATA} $$file					\


Home | Main Index | Thread Index | Old Index