aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorKoichiro Iwao <meta@FreeBSD.org>2019-03-26 05:56:15 +0000
committerKoichiro Iwao <meta@FreeBSD.org>2019-03-26 05:56:15 +0000
commit0d15fba9c6321ee4fb1b4b72ed13372956ecb362 (patch)
treef18cd7ab825ef24707657dd6c1255f551aa210d5 /net
parent0497f1d0007398c5649e26a34fcdd4d8c4f6fca6 (diff)
downloadports-0d15fba9c6321ee4fb1b4b72ed13372956ecb362.tar.gz
ports-0d15fba9c6321ee4fb1b4b72ed13372956ecb362.zip
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.
Notes
Notes: svn path=/head/; revision=496880
Diffstat (limited to 'net')
-rw-r--r--net/tigervnc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tigervnc/Makefile b/net/tigervnc/Makefile
index ddb29f4ebba7..c92b3b21ca20 100644
--- a/net/tigervnc/Makefile
+++ b/net/tigervnc/Makefile
@@ -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/ \