svn commit: r506527 - head/devel/libublio

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


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


More information about the svn-ports-all mailing list