diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2015-09-09 00:13:58 +0800 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2015-09-09 00:13:58 +0800 |
commit | 752f07242df349ac7b725495b78ad9c17c002171 (patch) | |
tree | f4088c15d7e69e0179dc01646ae7d31dd3b32284 /astro | |
parent | edf4a96773d374fd62d7dcd4b5a08ac9eb111b5f (diff) | |
download | freebsd-ports-gnome-752f07242df349ac7b725495b78ad9c17c002171.tar.gz freebsd-ports-gnome-752f07242df349ac7b725495b78ad9c17c002171.tar.zst freebsd-ports-gnome-752f07242df349ac7b725495b78ad9c17c002171.zip |
astro/osmium: unbreak build with DOXYGEN=on after r394778
NO_BUILD does more than dummy do-build. It creates BUILD_COOKIE that marks
all targets in _BUILD_SEQ as done, including do-build-${opt}-on/off and
post-build-${opt}-on/off. Since the targets haven't been run yet
do-install-DOXYGEN-on fails due to missing files.
Fix by leaking a call to nop "all" target in vendor Makefile. It should
be less kludgy than defining our own dummy do-build and less confusing
than treating do-build itself as an option helper. In case "all" starts
doing something useful the port would automatically take advantage of it.
PR: 202951
Reviewed by: mat
Approved by: portmgr blanket
Diffstat (limited to 'astro')
-rw-r--r-- | astro/osmium/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/astro/osmium/Makefile b/astro/osmium/Makefile index b180fb21d09d..261d5e25691c 100644 --- a/astro/osmium/Makefile +++ b/astro/osmium/Makefile @@ -29,7 +29,6 @@ CXXFLAGS+= -I${LOCALBASE}/include \ -L${LOCALBASE}/lib NO_ARCH= yes -NO_BUILD= yes PORTDOCS= * OPTIONS_DEFINE= JAVASCRIPT DOXYGEN DOCS |