diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2015-12-06 19:58:22 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2015-12-06 19:58:22 +0800 |
commit | b5950fafca015eda7aa69f1f36b85641c1e46b48 (patch) | |
tree | 4d23ed223ef76efe54c4618254b56f35d3ecec91 /net/citrix_ica | |
parent | ee7075a4cfd12b6f1d31df7c9b6231ff5ff1fb24 (diff) | |
download | freebsd-ports-gnome-b5950fafca015eda7aa69f1f36b85641c1e46b48.tar.gz freebsd-ports-gnome-b5950fafca015eda7aa69f1f36b85641c1e46b48.tar.zst freebsd-ports-gnome-b5950fafca015eda7aa69f1f36b85641c1e46b48.zip |
Fix for WRKDIR/WRKSRC after recent ports infrastructure changes.
PR: 204459
Submitted by: Helge Oldach <freebsd@oldach.net>
Diffstat (limited to 'net/citrix_ica')
-rw-r--r-- | net/citrix_ica/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/citrix_ica/Makefile b/net/citrix_ica/Makefile index b97da370f138..388e8bc9c7de 100644 --- a/net/citrix_ica/Makefile +++ b/net/citrix_ica/Makefile @@ -67,7 +67,7 @@ post-patch: ${WRKSRC}/linuxx86/linuxx86.cor/nls/*/module.ini do-install: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${STAGEDIR}${PREFIX}|g' ${WRKDIR}/linuxx86/hinst + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${STAGEDIR}${PREFIX}|g' ${WRKSRC}/linuxx86/hinst @if (test -d "${CDIR}") ; \ then \ ${ECHO} "-----------------------------------------------------------" ; \ @@ -84,8 +84,8 @@ do-install: # XXX: This is missing a "${BRANDELF} -t Linux <executables>". ${MKDIR} ${STAGEDIR}${CDIR} ${MKDIR} ${STAGEDIR}${CDIR}/config - cd ${WRKDIR}/linuxx86/linuxx86.cor/ && ${COPYTREE_SHARE} . ${STAGEDIR}${CDIR} - ${CP} ${WRKDIR}/setupwfc ${STAGEDIR}${CDIR} + cd ${WRKSRC}/linuxx86/linuxx86.cor/ && ${COPYTREE_SHARE} . ${STAGEDIR}${CDIR} + ${CP} ${WRKSRC}/setupwfc ${STAGEDIR}${CDIR} .if defined(ICA_CERTS) ${MKDIR} ${STAGEDIR}${CERTDIR} |