From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 6 20:00:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5513B850 for ; Thu, 6 Jun 2013 20:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 48065110C for ; Thu, 6 Jun 2013 20:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r56K029F013934 for ; Thu, 6 Jun 2013 20:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r56K02Ga013933; Thu, 6 Jun 2013 20:00:02 GMT (envelope-from gnats) Date: Thu, 6 Jun 2013 20:00:02 GMT Message-Id: <201306062000.r56K02Ga013933@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/179363: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jun 2013 20:00:02 -0000 The following reply was made to PR ports/179363; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179363: commit references a PR Date: Thu, 6 Jun 2013 19:56:08 +0000 (UTC) Author: rakuco Date: Thu Jun 6 19:55:55 2013 New Revision: 320124 URL: http://svnweb.freebsd.org/changeset/ports/320124 Log: Fix leftovers check on tinderbox by removing empty directories. PR: ports/179363 Submitted by: John Marino (maintainer) Modified: head/lang/gcc-aux/Makefile Modified: head/lang/gcc-aux/Makefile ============================================================================== --- head/lang/gcc-aux/Makefile Thu Jun 6 19:53:29 2013 (r320123) +++ head/lang/gcc-aux/Makefile Thu Jun 6 19:55:55 2013 (r320124) @@ -3,6 +3,7 @@ PORTNAME= gcc-aux PORTVERSION= ${SNAPSHOT} +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= http://downloads.dragonlace.net/src/:boot \ ${MASTER_SITE_GCC} @@ -289,6 +290,7 @@ test-c: do-install: cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} ${GMAKE} install-strip DESTDIR=${DESTINY} + cd ${DESTINY}${PREFIX}; ${FIND} * -type d -empty -print | xargs rmdir ${CP} -pR ${DESTINY}${PREFIX}/ ${PREFIX}/ post-install: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"