pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk file(1) under NetBSD-sparc64 4.99.4 identifies the ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/86cc5288b4df
branches:  trunk
changeset: 521826:86cc5288b4df
user:      tron <tron%pkgsrc.org@localhost>
date:      Thu Nov 23 16:27:53 2006 +0000

description:
file(1) under NetBSD-sparc64 4.99.4 identifies the file
"gdk-pixbuf/Makefile.in" from the "gtk2" package as "libtool library file".
Change the textfile check to accept any file which file(1) identifies
as "<whatever>libtool<whateverelse>" to fix the build of the
"gtk2" package (and probably other packages).

diffstat:

 mk/subst.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r e26ebb33a6c7 -r 86cc5288b4df mk/subst.mk
--- a/mk/subst.mk       Thu Nov 23 12:37:17 2006 +0000
+++ b/mk/subst.mk       Thu Nov 23 16:27:53 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: subst.mk,v 1.36 2006/11/09 02:06:29 rillig Exp $
+# $NetBSD: subst.mk,v 1.37 2006/11/23 16:27:53 tron Exp $
 #
 # This Makefile fragment implements a general text replacement facility.
 # Package makefiles define a ``class'', for each of which a particular
@@ -39,7 +39,7 @@
 _SUBST_IS_TEXT_FILE?= \
        { ${TEST} -f "$$file"                                           \
          && ${FILE_CMD} "$$file"                                       \
-            | ${EGREP} "(executable .* script|shell script|text)";     \
+            | ${EGREP} "(executable .* script|shell script|text|libtool)"; \
        } >/dev/null 2>&1
 
 _SUBST_BACKUP_SUFFIX=  .subst.sav



Home | Main Index | Thread Index | Old Index