Date: Fri, 13 Nov 2015 07:52:19 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401482 - head/sysutils/boxbackup Message-ID: <201511130752.tAD7qJxh080806@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Fri Nov 13 07:52:18 2015 New Revision: 401482 URL: https://svnweb.freebsd.org/changeset/ports/401482 Log: sysutils/boxbackup: Fix on F10+ If the base libexecinfo is used, the LDFLAGS must contain -lexecinfo (as was seen before my previous commit). I'll use the same check as USES=execinfo to determine base and set LDFLAGS conditionally to avoid another OPSYS check. Modified: head/sysutils/boxbackup/Makefile Modified: head/sysutils/boxbackup/Makefile ============================================================================== --- head/sysutils/boxbackup/Makefile Fri Nov 13 07:23:24 2015 (r401481) +++ head/sysutils/boxbackup/Makefile Fri Nov 13 07:52:18 2015 (r401482) @@ -21,6 +21,10 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf aclocal autoheader ACLOCAL_ARGS+= -I ${WRKSRC}/infrastructure/m4 +.if exists(/usr/lib/libexecinfo.so) +LDFLAGS+= -lexecinfo +.endif + MAKE_JOBS_UNSAFE=yes CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511130752.tAD7qJxh080806>