mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
1c3a319c53
- 'make pkgcfg' does that automagically :) * Implement r_mem_mem function in r_util
24 lines
392 B
Bash
24 lines
392 B
Bash
#!/bin/sh
|
|
|
|
new_env='
|
|
LIBR_PLUGINS=$PWD/prefix/lib/radare2
|
|
PATH=$PATH:$PWD/prefix/bin
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/prefix/lib
|
|
PKG_CONFIG_PATH=$PWD/libr/
|
|
'
|
|
|
|
echo
|
|
echo "==> Entering radare2 environment shell..."
|
|
echo
|
|
echo $new_env $SHELL \
|
|
| sed -e 's, ,\n,g' \
|
|
| sed -e 's,^, ,g' \
|
|
| sed -e 's,$, \\,'
|
|
echo
|
|
|
|
eval $new_env $SHELL
|
|
|
|
echo
|
|
echo "==> Back to system shell..."
|
|
echo
|