pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/dict-dictionaries



Module Name:    pkgsrc
Committed By:   chuck
Date:           Mon Apr  2 17:05:18 UTC 2018

Modified Files:
        pkgsrc/textproc/dict-dictionaries: Makefile

Log Message:
use ${SETENV} ${MAKE_ENV} to avoid locale errors from sort

resolves errors on OSX using the build environment:

sort: string comparison failed: Illegal byte sequence
sort: Set LC_ALL='C' to work around the problem.
sort: The strings compared were `ZERMELO FR\304NKEL SET THEORY\tQNDT\tJF' and `ZERMELO SET THEORY\tQNMY\tOT'.

when building.  Joerg provided pointers on using the build environment.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/dict-dictionaries/Makefile

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

Modified files:

Index: pkgsrc/textproc/dict-dictionaries/Makefile
diff -u pkgsrc/textproc/dict-dictionaries/Makefile:1.12 pkgsrc/textproc/dict-dictionaries/Makefile:1.13
--- pkgsrc/textproc/dict-dictionaries/Makefile:1.12     Thu Oct 25 06:55:45 2012
+++ pkgsrc/textproc/dict-dictionaries/Makefile  Mon Apr  2 17:05:18 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2012/10/25 06:55:45 asau Exp $
+# $NetBSD: Makefile,v 1.13 2018/04/02 17:05:18 chuck Exp $
 
 DISTNAME=      #
 PKGNAME=       dict-data-1.8.0
@@ -61,7 +61,7 @@ do-build:
        @${LN} -fs ${WRKDIR}/web1913-0.46-a ${WRKDIR}/dict-web1913-1.4/web1913
        @for d in ${DICTIONARIES}; do \
                (cd ${WRKDIR}/$$d; \
-                   ${MAKE_PROGRAM} db); \
+                   ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} db); \
        done
        ${FIND} ${WRKDIR} -name '*.dict' -print | \
        while read f; do \



Home | Main Index | Thread Index | Old Index