1
0

Accepting request 304799 from systemsmanagement:wbem

1

OBS-URL: https://build.opensuse.org/request/show/304799
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cmpi-provider-register?expand=0&rev=17
This commit is contained in:
Dominique Leuenberger 2015-05-02 19:38:18 +00:00 committed by Git OBS Bridge
commit 0d6527e5c9
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Apr 29 13:04:38 UTC 2015 - pwieczorkiewicz@suse.com
- Do not put empty element (ie the current dir) in LD_LIBRARY_PATH
if LD_LIBRARY_PATH is set but empty (bsc#642831)
-------------------------------------------------------------------
Sun Nov 9 07:07:58 UTC 2014 - bwiedemann@suse.com

View File

@ -379,7 +379,7 @@ if __name__ == '__main__':
env = os.environ.copy()
ldp = '%(h)s/lib:%(h)s/lib/providers:%(h)s/lib/providers/ext' % \
{'h':scx_home}
if 'LD_LIBRARY_PATH' in env:
if 'LD_LIBRARY_PATH' in env and env['LD_LIBRARY_PATH']:
ldp+= ':' + env['LD_LIBRARY_PATH']
env['LD_LIBRARY_PATH'] = ldp

View File

@ -1,7 +1,7 @@
#
# spec file for package cmpi-provider-register
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed