pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/49080 (parralel/openmpi seems to miss some files in PLIST)
The following reply was made to PR pkg/49080; it has been noted by GNATS.
From: "OBATA Akio" <obata%lins.jp@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: pkg/49080 (parralel/openmpi seems to miss some files in PLIST)
Date: Wed, 14 Jan 2015 11:39:37 +0900
On Wed, 14 Jan 2015 01:15:01 +0900, Thomas Orgis <thomas.orgis%uni-hamburg.de@localhost> wrote:
> 1. For some reason, PLIST.Linux is not picked up (my OPSYS == Linux, really).
It is because this package is setting PLIST_SRC, and it will kill default PLIST_SRC
settings in pkgsrc/mk/plist/plist.mk.
Following change will resolve the issue globally:
Index: plist.mk
===================================================================
RCS file: /cvsroot/pkgsrc/mk/plist/plist.mk,v
retrieving revision 1.48
diff -u -r1.48 plist.mk
--- plist.mk 30 Dec 2014 15:13:20 -0000 1.48
+++ plist.mk 14 Jan 2015 02:32:32 -0000
@@ -89,7 +89,7 @@
. endif
.endif
-PLIST_SRC?= ${PLIST_SRC_DFLT}
+PLIST_SRC+= ${PLIST_SRC_DFLT}
# This is the path to the generated PLIST file.
PLIST= ${WRKDIR}/.PLIST
Following change will resolve the issue in the package:
Index: options.mk
===================================================================
RCS file: /cvsroot/pkgsrc/parallel/openmpi/options.mk,v
retrieving revision 1.7
diff -u -r1.7 options.mk
--- options.mk 22 May 2014 13:24:49 -0000 1.7
+++ options.mk 14 Jan 2015 02:35:55 -0000
@@ -35,4 +35,4 @@
CONFIGURE_ARGS+= --without-sge
.endif
-PLIST_SRC+= PLIST
+PLIST_SRC+= ${PLIST_SRC_DFLT}
--
OBATA Akio / obata%lins.jp@localhost
Home |
Main Index |
Thread Index |
Old Index