diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2017-05-31 14:36:02 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2017-05-31 14:36:02 +0000 |
commit | a298b73d3e6703b4c9727328e4cea2e6350797bd (patch) | |
tree | d79be1b6957580647c344b6f34c36aa6beb4e45c /misc | |
parent | Update to 3.20 (diff) |
Fix install
install -m 0644 /hdd/ports/distfilesunicode/9.0.0/Unihan.zip
/hdd/ports/misc/unicode-ucd/work/stage/usr/local/share/unicode-ucd/
install: /hdd/ports/distfilesunicode/9.0.0/Unihan.zip: No such file or directory
*** Error code 71
Approved by: just fix it
Diffstat (limited to 'misc')
-rw-r--r-- | misc/unicode-ucd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/unicode-ucd/Makefile b/misc/unicode-ucd/Makefile index efe711b36223..bc5ec48dd9d9 100644 --- a/misc/unicode-ucd/Makefile +++ b/misc/unicode-ucd/Makefile @@ -24,7 +24,7 @@ do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} . \ ${STAGEDIR}${PREFIX}/share/${PORTNAME}/ # we unpack Unihan.zip but gucharmap wants the Unihan.zip to be present - ${INSTALL_DATA} ${DISTDIR}${DIST_SUBDIR}/Unihan.zip \ + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/Unihan.zip \ ${STAGEDIR}${PREFIX}/share/${PORTNAME}/ .include <bsd.port.mk> |