diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-04 16:50:34 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-04 16:50:34 +0000 |
commit | c719defb8328a25880a27549ab62009a75b594ec (patch) | |
tree | 0665da96c42ccccc1a83de0832118cea58ff8e9e /lang/python | |
parent | 9390285d78981f1b8af14ea579674602dea30758 (diff) | |
download | pkgsrc-c719defb8328a25880a27549ab62009a75b594ec.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 |