Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Sep 2019 06:17:33 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512388 - head/devel/flatcc
Message-ID:  <201909200617.x8K6HXse068623@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Fri Sep 20 06:17:33 2019
New Revision: 512388
URL: https://svnweb.freebsd.org/changeset/ports/512388

Log:
  devel/flatcc: Fix plist when built with debug info

Modified:
  head/devel/flatcc/Makefile
  head/devel/flatcc/pkg-plist

Modified: head/devel/flatcc/Makefile
==============================================================================
--- head/devel/flatcc/Makefile	Fri Sep 20 05:46:58 2019	(r512387)
+++ head/devel/flatcc/Makefile	Fri Sep 20 06:17:33 2019	(r512388)
@@ -19,6 +19,8 @@ USE_LDCONFIG=	yes
 CMAKE_ON=	BUILD_SHARED_LIBS FLATCC_INSTALL
 CMAKE_OFF=	FLATCC_TEST
 
+PLIST_SUB=	SUFFIX=${WITH_DEBUG:D_d}
+
 do-test:
 	@cd ${BUILD_WRKSRC} && \
 		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DFLATCC_TEST:BOOL=ON ${CMAKE_SOURCE_PATH} && \

Modified: head/devel/flatcc/pkg-plist
==============================================================================
--- head/devel/flatcc/pkg-plist	Fri Sep 20 05:46:58 2019	(r512387)
+++ head/devel/flatcc/pkg-plist	Fri Sep 20 06:17:33 2019	(r512388)
@@ -1,4 +1,4 @@
-bin/flatcc
+bin/flatcc%%SUFFIX%%
 include/flatcc/flatcc.h
 include/flatcc/flatcc_accessors.h
 include/flatcc/flatcc_alloc.h
@@ -64,5 +64,5 @@ include/flatcc/support/cdump.h
 include/flatcc/support/elapsed.h
 include/flatcc/support/hexdump.h
 include/flatcc/support/readfile.h
-lib/libflatcc.so
-lib/libflatccrt.so
+lib/libflatcc%%SUFFIX%%.so
+lib/libflatccrt%%SUFFIX%%.so



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909200617.x8K6HXse068623>