diff options
author | abs <abs> | 2003-06-24 14:14:17 +0000 |
---|---|---|
committer | abs <abs> | 2003-06-24 14:14:17 +0000 |
commit | b6e88733a1e53cfe117a4475a0b9763e77d4b474 (patch) | |
tree | 8f86ed0258b753f466f3a7d1e73f1161c96091e4 /misc/openoffice-linux | |
parent | 282516921cbf7611f19f8cd561c5f4fc2f80d52a (diff) | |
download | pkgsrc-b6e88733a1e53cfe117a4475a0b9763e77d4b474.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) |