aboutsummaryrefslogtreecommitdiffstats
path: root/testing/samba/ld_library_path.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/samba/ld_library_path.patch')
-rw-r--r--testing/samba/ld_library_path.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/samba/ld_library_path.patch b/testing/samba/ld_library_path.patch
deleted file mode 100644
index 2f0b8b981f..0000000000
--- a/testing/samba/ld_library_path.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-uclibc dpes not seem to handle a leading ':' in LD_LIBRARY_PATH.
-Eg. LD_LIBRARY_PATH=":/path"
-
---- ./buildtools/wafsamba/samba_utils.py.orig 2013-08-01 13:16:13.425790642 +0000
-+++ ./buildtools/wafsamba/samba_utils.py 2013-08-01 13:17:52.063543307 +0000
-@@ -54,10 +54,9 @@
- def ADD_LD_LIBRARY_PATH(path):
- '''add something to LD_LIBRARY_PATH'''
- if 'LD_LIBRARY_PATH' in os.environ:
-- oldpath = os.environ['LD_LIBRARY_PATH']
-+ newpath = os.environ['LD_LIBRARY_PATH'].split(':')
- else:
-- oldpath = ''
-- newpath = oldpath.split(':')
-+ newpath = []
- if not path in newpath:
- newpath.append(path)
- os.environ['LD_LIBRARY_PATH'] = ':'.join(newpath)