svn commit: r482101 - head/math/atlas

Yuri Victorovich yuri at FreeBSD.org
Sun Oct 14 18:07:47 UTC 2018


Author: yuri
Date: Sun Oct 14 18:07:46 2018
New Revision: 482101
URL: https://svnweb.freebsd.org/changeset/ports/482101

Log:
  math/atlas: Fix build by removing empty directories
  
  It was installing some empty directories under DATADIR which PORTDATA=* doesn't handle.

Modified:
  head/math/atlas/Makefile

Modified: head/math/atlas/Makefile
==============================================================================
--- head/math/atlas/Makefile	Sun Oct 14 17:50:32 2018	(r482100)
+++ head/math/atlas/Makefile	Sun Oct 14 18:07:46 2018	(r482101)
@@ -227,6 +227,7 @@ do-install:
 	(cd ${WRKSRC}/${opt}/ARCHS; \
 		${COPYTREE_SHARE} "*" ${STAGEDIR}${DATADIR}/${opt} \
 		"! -name Makefile -and ! -name *.tgz")
+	@${FIND} ${STAGEDIR}${DATADIR}/${opt} -type d -empty -delete
 .    endif
 .endfor
 .if ${PORT_OPTIONS:MDOCS}


More information about the svn-ports-all mailing list