From 047b5f43622da1bdcf8470389da832c097cc98da Mon Sep 17 00:00:00 2001 From: obraun Date: Sat, 1 Mar 2008 13:54:33 +0000 Subject: Disable WITH_DOCS on amd64. PR: ports/121251 Submitted by: "Brian O'Hanlon" --- lang/ghc/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lang') diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile index 91eb73a7c045..9357b3779b2c 100644 --- a/lang/ghc/Makefile +++ b/lang/ghc/Makefile @@ -34,11 +34,16 @@ USE_GMAKE= yes # You can view below. GNU_CONFIGURE= yes -OPTIONS= PROFILE "Compile for profiling as well" on \ - DOCS "Install HTML documentation" on +OPTIONS= PROFILE "Compile for profiling as well" on .include +.if ${ARCH} == "i386" +OPTIONS+= DOCS "Install HTML documentation" on +.else +.undef WITH_DOCS +.endif + .if exists(${LOCALBASE}/lib/libreadline.so.5) LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline .endif -- cgit