#!/bin/sh # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # java-set-classpath - Utility to update the default # CLASSPATH for LibreOffice if test "z$1" = "z" ; then echo "Update the default CLASSPATH for LibreOffice" echo "" echo "Usage: $0 [dir|jar]..." echo "" echo "The utility updates the LibreOffice system setting. It adds or removes" echo "the given directories and jar-files to or from the default CLASSPATH" echo "depending on if they are available on the system or not." echo "" echo "Parameters:" echo " dir - absolute path to a directory" echo " jar - absolute path to a jar-file" exit 0; fi JVM_CONFIG_FILE=@INSTALLDIR@/program/fundamentalrc for path in $@ ; do if test "z${path%%/*}" != "z" ; then echo "Warning: the path "$path" is not absolute and will be ignored" continue fi if test -e $path ; then # the file exist grep "URE_MORE_JAVA_CLASSPATH_URLS.*file:/*$path\([[:space:]].*\)\?$" $JVM_CONFIG_FILE >/dev/null && continue # it is not registered TMP_FILE=`mktemp /tmp/ooset-java-class.XXXXXXXXXX` || exit 1 sed -e "s|^\(.*URE_MORE_JAVA_CLASSPATH_URLS.*\)$|\1 file://$path|" $JVM_CONFIG_FILE >$TMP_FILE mv -f $TMP_FILE $JVM_CONFIG_FILE chmod 644 $JVM_CONFIG_FILE else # the file does not exist, remove it from the configuration TMP_FILE=`mktemp /tmp/ooset-java-class.XXXXXXXXXX` || exit 1; sed -e "s|^\(.*URE_MORE_JAVA_CLASSPATH_URLS.*\)file:/*$path\([[:space:]].*\)\?$|\1\2|" \ -e "s/\(URE_MORE_JAVA_CLASSPATH_URLS=\)[[:space:]]\+/\1/" \ -e "/^.*URE_MORE_JAVA_CLASSPATH_URLS/s/[[:space:]]\+/ /g" \ -e "/^.*URE_MORE_JAVA_CLASSPATH_URLS/s/[[:space:]]*$//" $JVM_CONFIG_FILE >$TMP_FILE mv -f $TMP_FILE $JVM_CONFIG_FILE chmod 644 $JVM_CONFIG_FILE fi done /cib/libreoffice-6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/vcl/generic/app
AgeCommit message (Expand)Author
2015-01-17no need to do that for all contextsMarkus Mohrhard
2015-01-06vcl: reset OpenGLContext(s) when yielding the last SolarMutex.Michael Meeks
2014-12-12osl_getCommandArg always returns osl_Process_E_NoneStephan Bergmann
2014-04-02Kill superfluous vertical whitespaceTor Lillqvist
2014-03-20Remove unnecessary vcl::SolarMutexObjectStephan Bergmann
2014-03-04Add mode linesTakeshi Abe
2014-02-26Remove visual noise from vclAlexander Wilms
2014-02-23Remove unneccessary commentsAlexander Wilms
2013-10-29TypoTor Lillqvist
2013-10-29Add a SAL_WARN_IF to get more verbose information when CheckYieldMutex() failsTor Lillqvist
2013-09-09CID#738553 uninitialized scalarCaolán McNamara
2013-08-26Simplify a bit iterator managementJulien Nabet
2013-08-18Use subfolder names from <config_folders.h>Tor Lillqvist
2013-06-16fdo#43460 use isEmpty()Jelle van der Waa