Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Oct 2018 18:07:47 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482101 - head/math/atlas
Message-ID:  <201810141807.w9EI7lxC063015@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



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