diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-02 10:04:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-02 10:04:57 +0100 |
commit | 7d8f3b19c69e741175bed035681cfacd3a30713d (patch) | |
tree | 132d7419575ca756242005ebefdc16732e47cebb /python | |
parent | fdd753d1a9fb4e8fa3ab00afbb2c0b1d5315da41 (diff) |
Linux LD_LIBRARY_PATH is missing as well.
Diffstat (limited to 'python')
-rw-r--r-- | python/Python-aix.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/Python-aix.patch b/python/Python-aix.patch index 8dae6d1b136b..9c8f601b7bfd 100644 --- a/python/Python-aix.patch +++ b/python/Python-aix.patch @@ -12,10 +12,11 @@ $(LN) -f $(INSTSONAME) $@; \ else\ $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ -@@ -907,6 +907,7 @@ +@@ -907,6 +907,8 @@ export PATH; PATH="`pwd`:$$PATH"; \ export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \ export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \ ++ export LD_LIBRARY_PATH; LD_LIBRARY_PATH="`pwd`${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"; \ + export LIBPATH; LIBPATH="`pwd`${LIBPATH:+:$LIBPATH}"; \ export EXE; EXE="$(BUILDEXE)"; \ cd $(srcdir)/Lib/$(PLATDIR); ./regen |