diff options
| author | Robert Clausecker <fuz@FreeBSD.org> | 2025-09-25 11:31:04 +0200 |
|---|---|---|
| committer | Robert Clausecker <fuz@FreeBSD.org> | 2025-09-28 11:32:13 +0200 |
| commit | bcbf0f51da59f6c2d65232fdc4d2ac056d726392 (patch) | |
| tree | bb390108b68c341ecfdd9cec88981723bfceede4 | |
| parent | e92113d81d25d98d527ac993177c8b76659cc356 (diff) | |
graphics/pgplot: fix build on armv7
Same fix as for math/slatec.
Approved by: portmgr (build fix blanket)
MFH: 2025Q3
Event: EuroBSDcon Devsummit 2025
See also: f56f31e07cb64c0b183127733bc6cd6af61efea1
(cherry picked from commit e6c598af85b56623d1cfd1a2f0a340784a263fc7)
| -rw-r--r-- | graphics/pgplot/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/pgplot/Makefile b/graphics/pgplot/Makefile index 68da1519bb6f..51b6d081b5ca 100644 --- a/graphics/pgplot/Makefile +++ b/graphics/pgplot/Makefile @@ -28,6 +28,10 @@ FFLAGS+= -std=legacy SUFFIXES= flib clib bin WRKSRC= ${WRKDIR}/${PORTNAME} +# ld.bfd supports neither -z relro nor -z norelro on armv7 +BINUTILS_NO_MAKE_ENV_armv7= LD +BINUTILS_NO_MAKE_ENV= ${BINUTILS_NO_MAKE_ENV_${ARCH}} + OPTIONS_DEFINE= DOCS EXAMPLES .include <bsd.port.options.mk> |
