Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Dec 2013 15:45:28 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r337362 - head/audio/musicpd
Message-ID:  <201312241545.rBOFjS7N052684@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: crees
Date: Tue Dec 24 15:45:28 2013
New Revision: 337362
URL: http://svnweb.freebsd.org/changeset/ports/337362

Log:
  Fix install with DOCS option disabled
  
  PR:		ports/185161
  Submitted by:	Anton Yuzhaninov

Modified:
  head/audio/musicpd/Makefile

Modified: head/audio/musicpd/Makefile
==============================================================================
--- head/audio/musicpd/Makefile	Tue Dec 24 15:34:38 2013	(r337361)
+++ head/audio/musicpd/Makefile	Tue Dec 24 15:45:28 2013	(r337362)
@@ -268,13 +268,11 @@ do-install:
 		${STAGEDIR}/${PREFIX}/man/man1/${PORTNAME}.1
 	@${INSTALL_MAN} ${WRKSRC}/doc/mpd.conf.5 \
 		${STAGEDIR}/${PREFIX}/man/man5/${PORTNAME}.conf.5
-.if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${STAGEDIR}/${DOCSDIR}
-.   for doc in ${PORTDOCS}
+.for doc in ${PORTDOCS}
 	@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}/${DOCSDIR}/
-.   endfor
+.endfor
 	@${INSTALL_DATA} ${WRKSRC}/doc/mpdconf.example \
 		${STAGEDIR}/${PREFIX}/etc/${PORTNAME}.conf.sample
-.endif
 
 .include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312241545.rBOFjS7N052684>