Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Nov 2022 08:00:50 GMT
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c08875b23f3e - main - www/elinks: fix another leftover from meson migration
Message-ID:  <202211170800.2AH80oLU097909@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bapt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c08875b23f3e80f11edee8479b293a2bf5cd1113

commit c08875b23f3e80f11edee8479b293a2bf5cd1113
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2022-11-17 07:51:11 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2022-11-17 08:00:39 +0000

    www/elinks: fix another leftover from meson migration
    
    meson is not aware of the LIBS variable while it knows about LDFLAGS.
---
 www/elinks/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/elinks/Makefile b/www/elinks/Makefile
index 320097115d5d..e9c840823ab1 100644
--- a/www/elinks/Makefile
+++ b/www/elinks/Makefile
@@ -17,7 +17,7 @@ BUILD_DEPENDS=	xmlto:textproc/xmlto
 USE_GITHUB=	yes
 GH_ACCOUNT=	rkd77
 
-LIBS+=		-lexecinfo
+LDFLAGS+=	-lexecinfo
 MESON_ARGS=	-Dgpm=false -Dperl=true
 
 OPTIONS_DEFINE=		256COLORS 88COLORS TRUECOLORS BITTORRENT BROTLI EXMODE \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211170800.2AH80oLU097909>