summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-09-09 10:48:03 +0200
committersb <sb@openoffice.org>2010-09-09 10:48:03 +0200
commit90a93cdf131381df4fe985d6535be76a52310a1c (patch)
tree12def23117fd91b519cf91747a080b8bde2bd713 /svx
parentf39adb3c348cbbd8dece7f60f88a2f7abeb94fa8 (diff)
hb22: #b6982587# treat null LD_LIBRARY_PATH like unset one
Diffstat (limited to 'svx')
-rw-r--r--svx/source/gengal/gengal.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/gengal/gengal.sh b/svx/source/gengal/gengal.sh
index 98e2cc1c845a..a760b8e085d0 100644
--- a/svx/source/gengal/gengal.sh
+++ b/svx/source/gengal/gengal.sh
@@ -67,17 +67,17 @@ case $sd_platform in
;;
Darwin)
- DYLD_LIBRARY_PATH=${sd_prog}${DYLD_LIBRARY_PATH+:${DYLD_LIBRARY_PATH}}
+ DYLD_LIBRARY_PATH=${sd_prog}${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
export DYLD_LIBRARY_PATH
;;
HP-UX)
- SHLIB_PATH=${sd_prog}:/usr/openwin/lib${SHLIB_PATH+:${SHLIB_PATH}}
+ SHLIB_PATH=${sd_prog}:/usr/openwin/lib${SHLIB_PATH:+:${SHLIB_PATH}}
export SHLIB_PATH
;;
*)
- LD_LIBRARY_PATH=${sd_prog}${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}
+ LD_LIBRARY_PATH=${sd_prog}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
export LD_LIBRARY_PATH
;;
esac