svn commit: r496880 - head/net/tigervnc

Koichiro Iwao meta at FreeBSD.org
Tue Mar 26 05:56:16 UTC 2019


Author: meta
Date: Tue Mar 26 05:56:15 2019
New Revision: 496880
URL: https://svnweb.freebsd.org/changeset/ports/496880

Log:
  net/tigervnc: remove unnecessary args from CMAKE_ARGS
  
  as this argument is not necessary. ${STAGE} was typo of ${STAGEDIR}
  however, ${STAGEDIR} should not be put here. ${STAGEDIR}${PREFIX} is not
  correct. Fortunately, because of this typo, it was working correctly.
  
  > -DCMAKE_INSTALL_PREFIX=${STAGE}${PREFIX}
  
  Furthermore, the following argument is set by Mk/bsd.cmake.mk.
  
  > -DCMAKE_INSTALL_PREFIX:PATH="${PREFIX}"
  
  Both arguments are entirely same and redundant so removing this is definitely
  safe and no-op.
  
  Sponsored by:	HAW International, Inc.

Modified:
  head/net/tigervnc/Makefile

Modified: head/net/tigervnc/Makefile
==============================================================================
--- head/net/tigervnc/Makefile	Tue Mar 26 05:31:27 2019	(r496879)
+++ head/net/tigervnc/Makefile	Tue Mar 26 05:56:15 2019	(r496880)
@@ -59,7 +59,7 @@ VIEWER_USE=	xorg=xcursor,xfixes,xft,xinerama
 NLS_CMAKE_BOOL=	ENABLE_NLS
 NLS_USES=	gettext
 
-CMAKE_ARGS+=	-G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=${STAGE}${PREFIX}
+CMAKE_ARGS+=	-G "Unix Makefiles"
 MAKE_ARGS+=	TIGERVNC_SRCDIR=${WRKSRC}
 CONFIGURE_ARGS+=	\
 		--prefix=${PREFIX} --mandir=${PREFIX}/man/ \


More information about the svn-ports-all mailing list