Fix typo in gnome-shell-extension-prefs
Environment variables should be checked for zero length, instead of non-zero. This prevented the script to run correctly in a jhbuild shell for example. https://bugzilla.gnome.org/show_bug.cgi?id=693031
This commit is contained in:
parent
eab497a814
commit
9bcce4f271
@ -1,12 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -n "$GI_TYPELIB_PATH" ]; then
|
||||
if [ -z "$GI_TYPELIB_PATH" ]; then
|
||||
export GI_TYPELIB_PATH=@pkglibdir@
|
||||
else
|
||||
export GI_TYPELIB_PATH=@pkglibdir@:$GI_TYPELIB_PATH
|
||||
fi
|
||||
|
||||
if [ -n "$LD_LIBRARY_PATH" ] ; then
|
||||
if [ -z "$LD_LIBRARY_PATH" ] ; then
|
||||
export LD_LIBRARY_PATH=@pkglibdir@
|
||||
else
|
||||
export LD_LIBRARY_PATH=@pkglibdir@:$LD_LIBRARY_PATH
|
||||
|
Loading…
Reference in New Issue
Block a user