svn commit: r309663 - head/x11-toolkits/qt33

Chris Rees crees at FreeBSD.org
Sun Dec 30 17:09:38 UTC 2012


On 30 December 2012 12:12, Beat Gaetzi <beat at freebsd.org> wrote:
> Author: beat
> Date: Sun Dec 30 12:12:31 2012
> New Revision: 309663
> URL: http://svnweb.freebsd.org/changeset/ports/309663
>
> Log:
>   - Silence a warning when PREFIX does not exist like on the INDEX builder.
>
>   Discussed with:       bapt
>
> Modified:
>   head/x11-toolkits/qt33/Makefile
>
> Modified: head/x11-toolkits/qt33/Makefile
> ==============================================================================
> --- head/x11-toolkits/qt33/Makefile     Sun Dec 30 12:03:51 2012        (r309662)
> +++ head/x11-toolkits/qt33/Makefile     Sun Dec 30 12:12:31 2012        (r309663)
> @@ -77,7 +77,9 @@ PACKAGE_COOKIE=       ${WRKDIR}/.package_done.
>
>  .include <bsd.port.pre.mk>
>
> +.if exists(${PREFIX})
>  PREFIX_REAL!=  /bin/realpath ${PREFIX}
> +.endif

${PREFIX_REAL} appears to be only used in post-patch target; unless
anyone objects I'm going to change the != into a =$() inside the
target to avoid the fork during make index once I've finished testing.

http://www.bayofrum.net/~crees/patches/qt33-INDEX-slow.diff

Chris


More information about the svn-ports-all mailing list