diff options
author | rillig <rillig> | 2005-11-04 16:50:34 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-11-04 16:50:34 +0000 |
commit | 9d5d8797aee38d3d4f983d4113c0dcca6f4847c4 (patch) | |
tree | 0665da96c42ccccc1a83de0832118cea58ff8e9e /lang/python | |
parent | 3b9faa28dbbf5bad93a1fa99c16d1217933f571b (diff) | |
download | pkgsrc-9d5d8797aee38d3d4f983d4113c0dcca6f4847c4.tar.gz |
Use "+=" for PKG_FAIL_REASON.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/extension.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/extension.mk b/lang/python/extension.mk index 3084ceec6cf..7689391d92e 100644 --- a/lang/python/extension.mk +++ b/lang/python/extension.mk @@ -1,4 +1,4 @@ -# $NetBSD: extension.mk,v 1.12 2004/12/28 22:48:11 adrianp Exp $ +# $NetBSD: extension.mk,v 1.13 2005/11/04 16:50:34 rillig Exp $ # derive a python version from the package name if possible # optionally handled quoted package names @@ -10,7 +10,7 @@ PYTHON_VERSION_REQD?= ${PKGNAME_REQD:C/^[^-]*py([^-]*)-.*/\1/} .if defined(PYBINMODULE) .if ${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "vax" -PKG_FAIL_REASON= "${PKGNAME} needs dynamic loading" +PKG_FAIL_REASON+= "${PKGNAME} needs dynamic loading" .endif .endif |