pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/swig swig: Be more precise with BUILDLINK_FILES.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1ddc46d2f018
branches:  trunk
changeset: 379582:1ddc46d2f018
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Thu May 19 09:03:53 2022 +0000

description:
swig: Be more precise with BUILDLINK_FILES.

Using globs which may include directories means the way this is eventually
parsed in the infrastructure using "ls -1" results in a lot of bogus output.
Whilst not an error, it does require additional checks to see if the files
actually exist.

diffstat:

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

diffs (18 lines):

diff -r 44a097468e89 -r 1ddc46d2f018 devel/swig/buildlink3.mk
--- a/devel/swig/buildlink3.mk  Thu May 19 08:53:38 2022 +0000
+++ b/devel/swig/buildlink3.mk  Thu May 19 09:03:53 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.12 2012/11/09 15:49:03 gdt Exp $
+# $NetBSD: buildlink3.mk,v 1.13 2022/05/19 09:03:53 jperkin Exp $
 
 BUILDLINK_TREE+=       swig
 
@@ -11,7 +11,7 @@
 # only contains a static library
 BUILDLINK_DEPMETHOD.swig?=     build
 
-BUILDLINK_FILES.swig+=         share/swig/1.3/* share/swig/1.3/*/*
+BUILDLINK_FILES.swig+=         share/swig/1.3/*.* share/swig/1.3/*/*.*
 .endif # SWIG_BUILDLINK3_MK
 
 BUILDLINK_TREE+=       -swig



Home | Main Index | Thread Index | Old Index