diff options
author | romain <romain@FreeBSD.org> | 2018-07-12 18:29:33 +0800 |
---|---|---|
committer | romain <romain@FreeBSD.org> | 2018-07-12 18:29:33 +0800 |
commit | 284fea2d7f5bddbb30a97a90b1b62e8b06879ec0 (patch) | |
tree | ada56be47c4da59fde8de38244dc88969a852a74 | |
parent | 7d40fa405a2580e22bc552648fdb1352224d0552 (diff) | |
download | freebsd-ports-gnome-284fea2d7f5bddbb30a97a90b1b62e8b06879ec0.tar.gz freebsd-ports-gnome-284fea2d7f5bddbb30a97a90b1b62e8b06879ec0.tar.zst freebsd-ports-gnome-284fea2d7f5bddbb30a97a90b1b62e8b06879ec0.zip |
Fix build when EXAMPLES is unset
This regression was introduced in r470918.
EXAMPLES files are staged but not installed when the option is unset, so the
EXAMPLESDIR directory must exist in all cases.
DOCS is not affected so left untouched.
-rw-r--r-- | textproc/p5-SGMLSpm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/p5-SGMLSpm/Makefile b/textproc/p5-SGMLSpm/Makefile index 4f6029ac0eec..8da200631b63 100644 --- a/textproc/p5-SGMLSpm/Makefile +++ b/textproc/p5-SGMLSpm/Makefile @@ -36,7 +36,7 @@ DOCS_INSTALL_TARGET= docs install_html HTMLDIR=${STAGEDIR}${DOCSDIR} pre-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} -pre-install-EXAMPLES-on: +pre-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |