Date: Sat, 13 Jul 2019 09:07:15 +0000 (UTC) From: Matthias Andree <mandree@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506527 - head/devel/libublio Message-ID: <201907130907.x6D97FAK020341@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mandree Date: Sat Jul 13 09:07:15 2019 New Revision: 506527 URL: https://svnweb.freebsd.org/changeset/ports/506527 Log: Fix build with MK_PROFILE=no in make.conf PR: 214607 Submitted by: Yasuhito FUTATSUKI Modified: head/devel/libublio/Makefile Modified: head/devel/libublio/Makefile ============================================================================== --- head/devel/libublio/Makefile Sat Jul 13 09:02:12 2019 (r506526) +++ head/devel/libublio/Makefile Sat Jul 13 09:07:15 2019 (r506527) @@ -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?201907130907.x6D97FAK020341>