diff options
author | pawel <pawel@FreeBSD.org> | 2017-05-31 22:36:02 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2017-05-31 22:36:02 +0800 |
commit | 9b383ab31c9d8fc214ca6d83e8ec8a94094fe1f5 (patch) | |
tree | d79be1b6957580647c344b6f34c36aa6beb4e45c /misc | |
parent | 13275a664e5cab4e5b9807bd63299e1d4cec256a (diff) | |
download | freebsd-ports-gnome-9b383ab31c9d8fc214ca6d83e8ec8a94094fe1f5.tar.gz freebsd-ports-gnome-9b383ab31c9d8fc214ca6d83e8ec8a94094fe1f5.tar.zst freebsd-ports-gnome-9b383ab31c9d8fc214ca6d83e8ec8a94094fe1f5.zip |
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> |