svn commit: r506528 - branches/2019Q3/devel/libublio

Matthias Andree mandree at FreeBSD.org
Sat Jul 13 09:09:34 UTC 2019


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=""


More information about the svn-ports-all mailing list