diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-12-02 19:55:16 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-12-02 19:55:16 +0800 |
commit | 7e5c40d2ad87673e5612de675739d49c2b613004 (patch) | |
tree | 9858ee5f0586f012fe6cb3ccebc1590174863485 /mail | |
parent | 786b416607a2bc86532f9477bdfeb062da94ede8 (diff) | |
download | freebsd-ports-gnome-7e5c40d2ad87673e5612de675739d49c2b613004.tar.gz freebsd-ports-gnome-7e5c40d2ad87673e5612de675739d49c2b613004.tar.zst freebsd-ports-gnome-7e5c40d2ad87673e5612de675739d49c2b613004.zip |
Unbreak. Rearrange so that DOCFORMAT is defined before use in a .if block.
Noticed by: dvl on #bsdports
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim-doc-html/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/exim-doc-html/Makefile b/mail/exim-doc-html/Makefile index 37e089ebb1d2..0601919cc2e6 100644 --- a/mail/exim-doc-html/Makefile +++ b/mail/exim-doc-html/Makefile @@ -19,14 +19,14 @@ COMMENT= Documentation for the Exim MTA in multiple formats USE_BZIP2= yes +DOCFORMAT?= html +DISTDOCFORMAT?= ${DOCFORMAT} + .if ${DOCFORMAT} == "info" BUILD_DEPENDS+= ${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo MAKEINFO= ${LOCALBASE}/bin/makeinfo .endif -DOCFORMAT?= html -DISTDOCFORMAT?= ${DOCFORMAT} - .if !defined(NOPORTDOCS) .if ${DOCFORMAT} == "html" PORTDOCS= html |