Date: Thu, 2 Nov 2017 04:12:20 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r453335 - in branches/2017Q4: print/harfbuzz-icu science/gnudatalanguage security/ossec-hids-client Message-ID: <201711020412.vA24CK4T099673@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Thu Nov 2 04:12:19 2017 New Revision: 453335 URL: https://svnweb.freebsd.org/changeset/ports/453335 Log: MFH: r453334 Don't try to look for PLIST under .OBJDIR If MAKEOBJDIRPREFIX and WRKDIRPREFIX are same PLIST may point to a non-existing file under .OBJDIR without breaking build. $ export MAKEOBJDIRPREFIX=/tmp $ echo WRKDIRPREFIX=/tmp >>${__MAKE_CONF-/etc/make.conf} $ cd /usr/ports/print/harfbuzz-icu $ make clean patch $ make -V .OBJDIR /tmp/usr/ports/print/harfbuzz-icu $ make install $ pkg info -l harfbuzz-icu harfbuzz-icu-1.5.1_2: PR: 219008 Submitted by: Ilia Skalozubov (based on) Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2017Q4/print/harfbuzz-icu/Makefile branches/2017Q4/science/gnudatalanguage/Makefile branches/2017Q4/security/ossec-hids-client/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/print/harfbuzz-icu/Makefile ============================================================================== --- branches/2017Q4/print/harfbuzz-icu/Makefile Thu Nov 2 04:07:23 2017 (r453334) +++ branches/2017Q4/print/harfbuzz-icu/Makefile Thu Nov 2 04:12:19 2017 (r453335) @@ -6,7 +6,7 @@ PKGNAMESUFFIX= -icu COMMENT= Harfbuzz ICU support MASTERDIR= ${.CURDIR}/../../print/harfbuzz -PLIST= pkg-plist +PLIST= ${.CURDIR}/pkg-plist HARFBUZZ_SLAVE= icu .include "${MASTERDIR}/Makefile" Modified: branches/2017Q4/science/gnudatalanguage/Makefile ============================================================================== --- branches/2017Q4/science/gnudatalanguage/Makefile Thu Nov 2 04:07:23 2017 (r453334) +++ branches/2017Q4/science/gnudatalanguage/Makefile Thu Nov 2 04:12:19 2017 (r453335) @@ -109,7 +109,7 @@ UDUNITS_CMAKE_OFF= -DUDUNITS:BOOL=NO .if defined(BUILD_PYTHON_MODULE) CATEGORIES+= python CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=YES -DOPENMP:BOOL=NO -PLIST= pkg-plist.pymod +PLIST= ${.CURDIR}/pkg-plist.pymod .else CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=NO .endif Modified: branches/2017Q4/security/ossec-hids-client/Makefile ============================================================================== --- branches/2017Q4/security/ossec-hids-client/Makefile Thu Nov 2 04:07:23 2017 (r453334) +++ branches/2017Q4/security/ossec-hids-client/Makefile Thu Nov 2 04:12:19 2017 (r453335) @@ -8,6 +8,6 @@ CLIENT_ONLY= yes MASTERDIR= ${.CURDIR}/../ossec-hids-server -PLIST= pkg-plist.client +PLIST= ${.CURDIR}/pkg-plist.client .include "${MASTERDIR}/Makefile"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711020412.vA24CK4T099673>