diff options
author | bapt <bapt@FreeBSD.org> | 2012-08-16 22:35:27 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-08-16 22:35:27 +0800 |
commit | 6206a247f194efafeb8e892002ef29235d0f2db7 (patch) | |
tree | 28bcce91ceb629067366f21faa4102bb6f8e5a90 | |
parent | 2b10d6a94c70e52448353aa955b7435ebf9e960f (diff) | |
download | freebsd-ports-gnome-6206a247f194efafeb8e892002ef29235d0f2db7.tar.gz freebsd-ports-gnome-6206a247f194efafeb8e892002ef29235d0f2db7.tar.zst freebsd-ports-gnome-6206a247f194efafeb8e892002ef29235d0f2db7.zip |
Do not include bsd.port.options.mk twice
Reported by: culot
-rw-r--r-- | devel/antlr/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/devel/antlr/Makefile b/devel/antlr/Makefile index b5f5e35e81d9..3f7e18bad219 100644 --- a/devel/antlr/Makefile +++ b/devel/antlr/Makefile @@ -29,8 +29,9 @@ CONFIGURE_ARGS= --disable-csharp --prefix=${PREFIX} PORT_CLASSPATH= ${WRKSRC}/antlrall.jar:. -.include <bsd.port.options.mk> EXAMPLES= cpp java + +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MDOCS} PORTDOCS= ANTLRException.gif closure.gif cpp-runtime.html \ csharp-runtime.html err.html glossary.html hidden.stream.gif \ @@ -42,8 +43,6 @@ PORTDOCS= ANTLRException.gif closure.gif cpp-runtime.html \ vocab.html .endif -.include <bsd.port.options.mk> - .if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= 2.2+ PORTDOCS+= python-runtime.html |