pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc/libreoffice
Module Name: pkgsrc
Committed By: martin
Date: Wed Nov 27 07:55:36 UTC 2019
Modified Files:
pkgsrc/misc/libreoffice: Makefile
Log Message:
If the python3 symlinks already exists in buildlink/bin, do not try
to create it again.
To generate a diff of this commit:
cvs rdiff -u -r1.213 -r1.214 pkgsrc/misc/libreoffice/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/misc/libreoffice/Makefile
diff -u pkgsrc/misc/libreoffice/Makefile:1.213 pkgsrc/misc/libreoffice/Makefile:1.214
--- pkgsrc/misc/libreoffice/Makefile:1.213 Fri Nov 15 13:26:02 2019
+++ pkgsrc/misc/libreoffice/Makefile Wed Nov 27 07:55:36 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.213 2019/11/15 13:26:02 ryoon Exp $
+# $NetBSD: Makefile,v 1.214 2019/11/27 07:55:36 martin Exp $
VERREL= 6.3.3
VERRC= 2
@@ -280,7 +280,7 @@ pre-configure: provide-python3
.PHONY: provide-python3
provide-python3:
# install phase uses python3 command
- ${LN} -s ${PYTHONBIN} "${BUILDLINK_DIR}/bin/python3"
+ [ -h "${BUILDLINK_DIR}/bin/python3" ] || ${LN} -s ${PYTHONBIN} "${BUILDLINK_DIR}/bin/python3"
do-install:
cd ${WRKSRC} && make DESTDIR="${DESTDIR}" PREFIXDIR="${PREFIX}" distro-pack-install
Home |
Main Index |
Thread Index |
Old Index