Date: Thu, 2 Nov 2017 04:07:23 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453334 - in head: print/harfbuzz-icu science/gnudatalanguage security/ossec-hids-client Message-ID: <201711020407.vA247NWY095402@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Thu Nov 2 04:07:23 2017 New Revision: 453334 URL: https://svnweb.freebsd.org/changeset/ports/453334 Log: 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 Modified: head/print/harfbuzz-icu/Makefile (contents, props changed) head/science/gnudatalanguage/Makefile (contents, props changed) head/security/ossec-hids-client/Makefile (contents, props changed) Modified: head/print/harfbuzz-icu/Makefile ============================================================================== --- head/print/harfbuzz-icu/Makefile Thu Nov 2 03:42:00 2017 (r453333) +++ head/print/harfbuzz-icu/Makefile Thu Nov 2 04:07:23 2017 (r453334) @@ -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: head/science/gnudatalanguage/Makefile ============================================================================== --- head/science/gnudatalanguage/Makefile Thu Nov 2 03:42:00 2017 (r453333) +++ head/science/gnudatalanguage/Makefile Thu Nov 2 04:07:23 2017 (r453334) @@ -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: head/security/ossec-hids-client/Makefile ============================================================================== --- head/security/ossec-hids-client/Makefile Thu Nov 2 03:42:00 2017 (r453333) +++ head/security/ossec-hids-client/Makefile Thu Nov 2 04:07:23 2017 (r453334) @@ -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?201711020407.vA247NWY095402>