pkgsrc-Changes archive

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

CVS commit: pkgsrc/games/fortunes-it



Module Name:    pkgsrc
Committed By:   leot
Date:           Tue Aug  1 11:20:33 UTC 2017

Modified Files:
        pkgsrc/games/fortunes-it: Makefile

Log Message:
Do not invoke strfile on any possible `*.dat' files (similarly to fortunes-de
package).

Should fix an issue appeared on Joyent SmartOS bulk build.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/fortunes-it/Makefile

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

Modified files:

Index: pkgsrc/games/fortunes-it/Makefile
diff -u pkgsrc/games/fortunes-it/Makefile:1.1 pkgsrc/games/fortunes-it/Makefile:1.2
--- pkgsrc/games/fortunes-it/Makefile:1.1       Sun Jul 30 13:21:31 2017
+++ pkgsrc/games/fortunes-it/Makefile   Tue Aug  1 11:20:33 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2017/07/30 13:21:31 leot Exp $
+# $NetBSD: Makefile,v 1.2 2017/08/01 11:20:33 leot Exp $
 #
 
 DISTNAME=      fortune-it-1.99
@@ -17,7 +17,7 @@ BUILD_DEPENDS+=       fortune-strfile-[0-9]*:.
 STRFILE=       ${LOCALBASE}/bin/strfile
 
 do-build:
-       find ${WRKSRC}/testi/ -type f -exec ${STRFILE} {} \;
+       find ${WRKSRC}/testi/ -type f ! -name "*.dat" -exec ${STRFILE} {} \;
 
 do-install:
        ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/games/fortune/it



Home | Main Index | Thread Index | Old Index