diff options
author | marino <marino@FreeBSD.org> | 2015-11-13 13:56:32 +0000 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-11-13 13:56:32 +0000 |
commit | b79741554a91b9f72e7e8d94a8fa64f227e75d31 (patch) | |
tree | 0c81547ec764e0c5741b3dae0f4bfdad774c4a1b | |
parent | 5740ee67f4d030dbc7e0715124db2d3d12debdc1 (diff) | |
download | FreeBSD-ports-b79741554a91b9f72e7e8d94a8fa64f227e75d31.zip FreeBSD-ports-b79741554a91b9f72e7e8d94a8fa64f227e75d31.tar.gz |
arabic/arabic: Fix staging after WRKDIR/WRKSRC global changes
This port was left behind when it wandated WRKDIR != WRKSRC and it
was failing staging.
Approved by: just fix it
-rw-r--r-- | arabic/arabtex/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arabic/arabtex/Makefile b/arabic/arabtex/Makefile index 9c0753d..a7074da 100644 --- a/arabic/arabtex/Makefile +++ b/arabic/arabtex/Makefile @@ -24,11 +24,11 @@ PLIST_SUB= MKTEXLSR=${LOCALBASE}/bin/mktexlsr OPTIONS_DEFINE= DOCS do-install: - (cd ${WRKDIR} && ${COPYTREE_SHARE} "fonts tex" \ + (cd ${WRKSRC} && ${COPYTREE_SHARE} "fonts tex" \ ${STAGEDIR}${PREFIX}/${TEXMFLOCALDIR}) do-install-DOCS-on: - (cd ${WRKDIR} && ${COPYTREE_SHARE} doc \ + (cd ${WRKSRC} && ${COPYTREE_SHARE} doc \ ${STAGEDIR}${PREFIX}/${TEXMFLOCALDIR}) .include <bsd.port.mk> |