diff options
author | bsam <bsam@FreeBSD.org> | 2013-10-16 18:58:13 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-10-16 18:58:13 +0800 |
commit | ec1e3459531f2f4d615c52c139761e59c76b14ca (patch) | |
tree | bc68f482c087a7db187b403582c77669b4445a48 /russian | |
parent | 2e41ae32d21a02a27fd893b5fdd41d94ef3635ee (diff) | |
download | freebsd-ports-gnome-ec1e3459531f2f4d615c52c139761e59c76b14ca.tar.gz freebsd-ports-gnome-ec1e3459531f2f4d615c52c139761e59c76b14ca.tar.zst freebsd-ports-gnome-ec1e3459531f2f4d615c52c139761e59c76b14ca.zip |
Fix at cross-device build (use "ln -sf" rather "ln -f"):
-----
ln: /usr/ports/russian/d1489/work/stage/usr/local/bin/fromdos: Cross-device link
-----
Pointed out by: marino (via e-mail)
Diffstat (limited to 'russian')
-rw-r--r-- | russian/d1489/files/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/russian/d1489/files/patch-Makefile b/russian/d1489/files/patch-Makefile index 3740a1cd23a3..f9fe54932d41 100644 --- a/russian/d1489/files/patch-Makefile +++ b/russian/d1489/files/patch-Makefile @@ -20,9 +20,9 @@ - cp a2kfcnv ${PREFIX}/bin + cp todos ${DISTDIR}/bin + -rm -f ${DISTDIR}/bin/fromdos ${DISTDIR}/bin/fromwin ${DISTDIR}/bin/towin -+ ln -f ${PREFIX}/bin/todos ${DISTDIR}/bin/fromdos -+ ln -f ${PREFIX}/bin/todos ${DISTDIR}/bin/fromwin -+ ln -f ${PREFIX}/bin/todos ${DISTDIR}/bin/towin ++ ln -sf ${PREFIX}/bin/todos ${DISTDIR}/bin/fromdos ++ ln -sf ${PREFIX}/bin/todos ${DISTDIR}/bin/fromwin ++ ln -sf ${PREFIX}/bin/todos ${DISTDIR}/bin/towin + cp a2kfcnv ${DISTDIR}/bin clean: |