diff options
author | abs <abs@pkgsrc.org> | 2003-06-24 14:14:17 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2003-06-24 14:14:17 +0000 |
commit | 7aa369bef921d7183fb0f4644d1938bfa9ac5277 (patch) | |
tree | 8f86ed0258b753f466f3a7d1e73f1161c96091e4 /misc/openoffice-linux | |
parent | 2ff79a2e36eb02db2af1d12970648211354b6c4c (diff) | |
download | pkgsrc-7aa369bef921d7183fb0f4644d1938bfa9ac5277.tar.gz |
Use '${LN} -sf' instead of '${LN} -s' for java link (similar to sun-jdk14)
so we do not fail if the link is already present.
Diffstat (limited to 'misc/openoffice-linux')
-rw-r--r-- | misc/openoffice-linux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/openoffice-linux/Makefile b/misc/openoffice-linux/Makefile index c8df172ca99..b6819e4a3e2 100644 --- a/misc/openoffice-linux/Makefile +++ b/misc/openoffice-linux/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2003/04/26 15:44:16 mrauch Exp $ +# $NetBSD: Makefile,v 1.12 2003/06/24 14:14:17 abs Exp $ DISTNAME= OOo_1.0.3.1_LinuxIntel_install PKGNAME= openoffice-linux-1.0.3.1 @@ -66,7 +66,7 @@ do-install: ${CHMOD} +x ${PREFIX}/bin/soffice ${PATCH} ${PATCH_ARGS} ${PREFIX}/OpenOffice.org1.0.3/program/soffice \ < ${FILESDIR}/soffice.test.patch - ${LN} -s ${PKG_JAVA_HOME} ${PKG_JAVA_HOME}/jre + ${LN} -sf ${PKG_JAVA_HOME} ${PKG_JAVA_HOME}/jre # everything specific to your OS/Arch goes into it's own Makefile # group together i386, i486, i586 and i686 (for Linux) |