pkgsrc-WIP-changes archive

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

added "${FIND} ${WRKSRC} -type f -exec ${CHMOD} go-w {} +" in wip/py-scipy/Makefile to prevent "group-writable file" errors.



Module Name:	pkgsrc-wip
Committed By:	Kinoshita Daisuke <kinoshita%astro.ncu.edu.tw@localhost>
Pushed By:	daisuke
Date:		Thu Dec 17 13:57:23 2020 +0800
Changeset:	29f0943128122048f1ca1d90b8e27e5e80c9d0b3

Modified Files:
	py-scipy/Makefile

Log Message:
added "${FIND} ${WRKSRC} -type f -exec ${CHMOD} go-w {} +" in wip/py-scipy/Makefile to prevent "group-writable file" errors.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=29f0943128122048f1ca1d90b8e27e5e80c9d0b3

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

diffstat:
 py-scipy/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diffs:
diff --git a/py-scipy/Makefile b/py-scipy/Makefile
index cf20680c7a..9ff5b59f92 100644
--- a/py-scipy/Makefile
+++ b/py-scipy/Makefile
@@ -14,6 +14,9 @@ DEPENDS+=	${PYPKGPREFIX}-pybind11-[0-9]*:../../devel/py-pybind11
 TEST_DEPENDS+=	${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
 TEST_DEPENDS+=	${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
+post-extract:
+	${FIND} ${WRKSRC} -type f -exec ${CHMOD} go-w {} +
+
 USE_LANGUAGES+=	c c++ fortran
 MAKE_ENV+=	ATLAS=None
 


Home | Main Index | Thread Index | Old Index