2022-09-10 00:05:02 +02:00
|
|
|
#!/bin/sh
|
2020-06-12 21:33:58 +02:00
|
|
|
cd /opt
|
|
|
|
git clone git://github.com/sickill/stderred.git
|
2020-06-21 16:20:30 +02:00
|
|
|
cd stderred
|
2020-06-12 21:33:58 +02:00
|
|
|
make
|
2022-09-10 00:05:02 +02:00
|
|
|
case "$LD_PRELOAD" in (*libstderred.so*) ;;
|
|
|
|
(*) echo 'export LD_PRELOAD="/opt/stderred/build/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}"'>>$HOME/.zprofile;; esac
|