Date: Thu, 22 Nov 2018 18:26:41 +0000 (UTC) From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= <dumbbell@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485606 - in head/lang: erlang-runtime15 erlang-runtime16 erlang-runtime17 erlang-runtime18 Message-ID: <201811221826.wAMIQfBh037099@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dumbbell Date: Thu Nov 22 18:26:41 2018 New Revision: 485606 URL: https://svnweb.freebsd.org/changeset/ports/485606 Log: lang/erlang-runtime{15,16,17,18}: Fix trailing include It should be `bsd.port.post.mk`, not `bsd.port.mk`, because we include `bsd.port.pre.mk`. Reported by: olgeni Modified: head/lang/erlang-runtime15/Makefile head/lang/erlang-runtime16/Makefile head/lang/erlang-runtime17/Makefile head/lang/erlang-runtime18/Makefile Modified: head/lang/erlang-runtime15/Makefile ============================================================================== --- head/lang/erlang-runtime15/Makefile Thu Nov 22 18:06:57 2018 (r485605) +++ head/lang/erlang-runtime15/Makefile Thu Nov 22 18:26:41 2018 (r485606) @@ -125,4 +125,4 @@ post-stage: @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type f -o -type l \ | ${SORT} >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> Modified: head/lang/erlang-runtime16/Makefile ============================================================================== --- head/lang/erlang-runtime16/Makefile Thu Nov 22 18:06:57 2018 (r485605) +++ head/lang/erlang-runtime16/Makefile Thu Nov 22 18:26:41 2018 (r485606) @@ -125,4 +125,4 @@ post-stage: @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type f -o -type l \ | ${SORT} >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> Modified: head/lang/erlang-runtime17/Makefile ============================================================================== --- head/lang/erlang-runtime17/Makefile Thu Nov 22 18:06:57 2018 (r485605) +++ head/lang/erlang-runtime17/Makefile Thu Nov 22 18:26:41 2018 (r485606) @@ -152,4 +152,4 @@ post-stage: @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type f -o -type l \ | ${SORT} >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> Modified: head/lang/erlang-runtime18/Makefile ============================================================================== --- head/lang/erlang-runtime18/Makefile Thu Nov 22 18:06:57 2018 (r485605) +++ head/lang/erlang-runtime18/Makefile Thu Nov 22 18:26:41 2018 (r485606) @@ -153,4 +153,4 @@ post-stage: @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type f -o -type l \ | ${SORT} >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811221826.wAMIQfBh037099>