summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-07 13:33:02 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-07 17:56:44 +0000
commite3cb10c3c55a4d78497e94671d19ccdc16d478b0 (patch)
treeb2cb652cacc7a14094833bde72bf536c601fdc95 /bin
parent5ea32020e870fde6e1fa05964c343d004ed26f46 (diff)
bin/run: fix indentation
Change-Id: I97d58f0e6780986356479279f91eba46951b1be0 Reviewed-on: https://gerrit.libreoffice.org/14783 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/run90
1 files changed, 46 insertions, 44 deletions
diff --git a/bin/run b/bin/run
index e604edfb8bef..e9bcb5cd92ba 100755
--- a/bin/run
+++ b/bin/run
@@ -11,68 +11,70 @@
if uname | grep -i CYGWIN >/dev/null; then
-dir=$(realpath "$(pwd)")
+ dir=$(realpath "$(pwd)")
-while test ! -d "${dir}/instdir/program" ; do
- if test "${dir}" = "/"; then
- echo "error: cannot find \"program\" dir from \"$(pwd)\""
- exit 1
- fi
- dir=$(realpath "${dir}/..")
-done
+ while test ! -d "${dir}/instdir/program" ; do
+ if test "${dir}" = "/"; then
+ echo "error: cannot find \"program\" dir from \"$(pwd)\""
+ exit 1
+ fi
+ dir=$(realpath "${dir}/..")
+ done
-exedir="${dir}"/workdir/LinkTarget/Executable
-export URE_BOOTSTRAP=file:///$(cygpath -m "${dir}")/instdir/program/fundamental.ini
-export PATH=${PATH:+$PATH:}"${dir}"/instdir/program
+ exedir="${dir}"/workdir/LinkTarget/Executable
+ export URE_BOOTSTRAP=file:///$(cygpath -m "${dir}")/instdir/program/fundamental.ini
+ export PATH=${PATH:+$PATH:}"${dir}"/instdir/program
-echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
-echo "setting search path to: ${PATH}"
-echo "execing: ${exedir}/$1"
+ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
+ echo "setting search path to: ${PATH}"
+ echo "execing: ${exedir}/$1"
-exec ${LO_TRACE} "${exedir}"/$@
+ exec ${LO_TRACE} "${exedir}"/$@
elif [ $(uname) = Darwin ]; then
-dir=$(pwd)
+ dir=$(pwd)
-# Get PRODUCTNAME from config_host.mk, LibreOffice or LibreOfficeDev
-eval `grep 'export PRODUCTNAME=' config_host.mk`
+ # Get PRODUCTNAME from config_host.mk, LibreOffice or LibreOfficeDev
+ eval `grep 'export PRODUCTNAME=' config_host.mk`
-if [ ! -d "${dir}/instdir/$PRODUCTNAME.app" ]; then
- echo "error: cannot find \"instdir/$PRODUCTNAME.app\" dir in \"$(pwd)\""
- exit 1
-fi
+ if [ ! -d "${dir}/instdir/$PRODUCTNAME.app" ]; then
+ echo "error: cannot find \"instdir/$PRODUCTNAME.app\" dir in \"$(pwd)\""
+ exit 1
+ fi
-exedir="${dir}"/workdir/LinkTarget/Executable
-export URE_BOOTSTRAP=file://"${dir}"/instdir/$PRODUCTNAME.app/Contents/Resources/fundamentalrc
-export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH:+$DYLD_LIBRARY_PATH:}"${dir}"/instdir/$PRODUCTNAME.app/Contents/Frameworks
+ exedir="${dir}"/workdir/LinkTarget/Executable
+ export URE_BOOTSTRAP=file://"${dir}"/instdir/$PRODUCTNAME.app/Contents/Resources/fundamentalrc
+ export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH:+$DYLD_LIBRARY_PATH:}"${dir}"/instdir/$PRODUCTNAME.app/Contents/Frameworks
-echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
-echo "setting search path to: ${DYLD_LIBRARY_PATH}"
-echo "execing: ${exedir}/$1"
+ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
+ echo "setting search path to: ${DYLD_LIBRARY_PATH}"
+ echo "execing: ${exedir}/$1"
-exec ${LO_TRACE} "${exedir}"/$@
+ exec ${LO_TRACE} "${exedir}"/$@
else
-dir=$(readlink -f "$(pwd)")
+ dir=$(readlink -f "$(pwd)")
-while test ! -d "${dir}/instdir/program" ; do
- if test "${dir}" = "/"; then
- echo "error: cannot find \"program\" dir from \"$(pwd)\""
- exit 1
- fi
- dir=$(readlink -f "${dir}/..")
-done
+ while test ! -d "${dir}/instdir/program" ; do
+ if test "${dir}" = "/"; then
+ echo "error: cannot find \"program\" dir from \"$(pwd)\""
+ exit 1
+ fi
+ dir=$(readlink -f "${dir}/..")
+ done
-exedir="${dir}"/workdir/LinkTarget/Executable
-export URE_BOOTSTRAP=file://"${dir}"/instdir/program/fundamentalrc
-export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${dir}"/instdir/program
+ exedir="${dir}"/workdir/LinkTarget/Executable
+ export URE_BOOTSTRAP=file://"${dir}"/instdir/program/fundamentalrc
+ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${dir}"/instdir/program
-echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
-echo "setting search path to: ${LD_LIBRARY_PATH}"
-echo "execing: ${exedir}/$1"
+ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
+ echo "setting search path to: ${LD_LIBRARY_PATH}"
+ echo "execing: ${exedir}/$1"
-exec ${LO_TRACE} "${exedir}"/$@
+ exec ${LO_TRACE} "${exedir}"/$@
fi
+
+# vi:set shiftwidth=4 expandtab: