Date: Sat, 13 Jul 2019 09:09:33 +0000 (UTC) From: Matthias Andree <mandree@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r506528 - branches/2019Q3/devel/libublio Message-ID: <201907130909.x6D99Xa0020591@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mandree Date: Sat Jul 13 09:09:33 2019 New Revision: 506528 URL: https://svnweb.freebsd.org/changeset/ports/506528 Log: Fix build with MK_PROFILE=no in make.conf MFH: r506527 Invoking blanket approval for fixing a broken build. PR: 214607 Submitted by: Yasuhito FUTATSUKI Approved by: ports-secteam (blanket) Modified: branches/2019Q3/devel/libublio/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/devel/libublio/Makefile ============================================================================== --- branches/2019Q3/devel/libublio/Makefile Sat Jul 13 09:07:15 2019 (r506527) +++ branches/2019Q3/devel/libublio/Makefile Sat Jul 13 09:09:33 2019 (r506528) @@ -14,7 +14,7 @@ LICENSE= BSD2CLAUSE USE_LDCONFIG= yes -.if defined(NO_PROFILE) || defined(NOPROFILE) || defined(WITHOUT_PROFILE) +.if defined(NO_PROFILE) || defined(NOPROFILE) || defined(WITHOUT_PROFILE) || "${MK_PROFILE}" == "no" PLIST_SUB+= PROFLIB="@comment " .else PLIST_SUB+= PROFLIB=""
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907130909.x6D99Xa0020591>