From e8ba8804c317c17e3233a631bdb4e691834d5769 Mon Sep 17 00:00:00 2001 From: Sheppy Date: Wed, 2 Nov 2016 22:57:01 +0100 Subject: [PATCH] another bug with LDpreload --- fix_stderrlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fix_stderrlib.py b/fix_stderrlib.py index c5f99d0..d93ef9e 100644 --- a/fix_stderrlib.py +++ b/fix_stderrlib.py @@ -4,5 +4,5 @@ rc = open("zshrc",'w+') old = open("zshrc_old",'r') for line in old: if line.startswith("LD_PRELOAD="): - line = "LD_PRELOAD='"+os.getcwd()+"'\n" + line = "LD_PRELOAD='"+os.getcwd()+"/libcoloredstderr.so'\n" rc.write(line)