CVS commit: pkgsrc/benchmarks/paranoia
"Greg Troxel" <[email protected]>
| Newsgroups | gmane.os.netbsd.devel.pkgsrc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Module Name: pkgsrc Committed By: gdt Date: Tue Aug 18 23:21:22 UTC 2026 Modified Files: pkgsrc/benchmarks/paranoia: Makefile Log Message: benchmarks/paranoia: Pass LDFLAGS to build to avoid RELRO complaints, apparently catching up with recent flag-passing changes. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/benchmarks/paranoia/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
(unnamed)
(text/x-diff, 774 B)
Modified files:
Index: pkgsrc/benchmarks/paranoia/Makefile
diff -u pkgsrc/benchmarks/paranoia/Makefile:1.23 pkgsrc/benchmarks/paranoia/Makefile:1.24
--- pkgsrc/benchmarks/paranoia/Makefile:1.23 Thu Mar 26 00:15:57 2026
+++ pkgsrc/benchmarks/paranoia/Makefile Tue Aug 18 23:21:21 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2026/03/26 00:15:57 gdt Exp $
+# $NetBSD: Makefile,v 1.24 2026/08/18 23:21:21 gdt Exp $
DISTNAME= paranoia
PKGNAME= paranoia-960101
@@ -27,7 +27,7 @@ INSTALLATION_DIRS= bin
CFLAGS+= -fexcess-precision=standard
do-build:
- (cd ${WRKSRC} ; ${CC} ${CFLAGS} -o paranoia paranoia.c -lm)
+ (cd ${WRKSRC} ; ${CC} ${CFLAGS} ${LDFLAGS} -o paranoia paranoia.c -lm)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/paranoia ${DESTDIR}${PREFIX}/bin