pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/flim



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Apr 18 16:26:45 UTC 2017

Modified Files:
        pkgsrc/devel/flim: Makefile

Log Message:
Use GREP/EGREP and fix regexp.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/devel/flim/Makefile

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

Modified files:

Index: pkgsrc/devel/flim/Makefile
diff -u pkgsrc/devel/flim/Makefile:1.38 pkgsrc/devel/flim/Makefile:1.39
--- pkgsrc/devel/flim/Makefile:1.38     Mon Dec 12 11:42:49 2016
+++ pkgsrc/devel/flim/Makefile  Tue Apr 18 16:26:45 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2016/12/12 11:42:49 hauke Exp $
+# $NetBSD: Makefile,v 1.39 2017/04/18 16:26:45 jperkin Exp $
 
 DISTNAME=      flim-1.14.9
 PKGNAME=       ${EMACS_PKGNAME_PREFIX}${DISTNAME}
@@ -45,7 +45,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