diff options
author | marcus <marcus@FreeBSD.org> | 2009-03-18 13:07:27 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2009-03-18 13:07:27 +0800 |
commit | f205b695efa851cd53972dc83808ba60a1317ca8 (patch) | |
tree | a56a3587c1df3fde044b03f7c6870804e0120ba2 /textproc | |
parent | 6db211eb114b11935c81dbce1ad7bf091a6003d7 (diff) | |
download | freebsd-ports-gnome-f205b695efa851cd53972dc83808ba60a1317ca8.tar.gz freebsd-ports-gnome-f205b695efa851cd53972dc83808ba60a1317ca8.tar.zst freebsd-ports-gnome-f205b695efa851cd53972dc83808ba60a1317ca8.zip |
Attempt to fix the NOPORTDOCS case.
Reported by: QAT
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/libxml2-reference/Makefile | 2 | ||||
-rw-r--r-- | textproc/libxslt-reference/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/textproc/libxml2-reference/Makefile b/textproc/libxml2-reference/Makefile index 97152ce6a86b..799197549ba8 100644 --- a/textproc/libxml2-reference/Makefile +++ b/textproc/libxml2-reference/Makefile @@ -18,8 +18,10 @@ PLIST_FILES= ${EXAMPLES:S|^|%%EXAMPLESDIR%%/|} PLIST_DIRS= %%EXAMPLESDIR%% do-install: +.if !defined(NOPORTDOCS) .for d in . doc doc/devhelp doc/examples @cd ${PARENT_WRKSRC}/${d} && ${GMAKE} install-data-local .endfor +.endif .include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" diff --git a/textproc/libxslt-reference/Makefile b/textproc/libxslt-reference/Makefile index fddf67bce106..a5b472e8b8cd 100644 --- a/textproc/libxslt-reference/Makefile +++ b/textproc/libxslt-reference/Makefile @@ -14,6 +14,8 @@ EXTRACT_ONLY= USE_GMAKE= yes do-install: +.if !defined(NOPORTDOCS) @cd ${PARENT_WRKSRC}/doc && ${GMAKE} install-data-local +.endif .include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" |