summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@sagem.com>2009-02-25 15:51:11 +0100
committerHugues Hiegel <hugues.hiegel@sagem.com>2009-02-25 15:51:11 +0100
commit8e7247f48668fb4772363eaf4c3cc5a29daacb10 (patch)
tree20470c9f3324ceb9690c9fdb72176ada4ded56f3
parent3b6dd4fb769ec9846cfccf8e7033dde7a4315278 (diff)
[Devel] removed unused file
-rw-r--r--90_DevelUtils.zsh50
1 files changed, 0 insertions, 50 deletions
diff --git a/90_DevelUtils.zsh b/90_DevelUtils.zsh
deleted file mode 100644
index 37290a0..0000000
--- a/90_DevelUtils.zsh
+++ /dev/null
@@ -1,50 +0,0 @@
-##
-## Part of configuration files for Zsh 4
-## by Hugues Hiegel <hugues@hiegel.fr>
-##
-## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS
-##
-## You are encouraged to use, modify, and redistribute
-## these files with or without this notice.
-##
-
-cd_back() {
-# for folder in $@
-# do
-# cd $(echo $folder | sed "s:[^/]\+:..:g")
-# done
- cd $1 ""
-}
-
-ldd()
-{
- #LDD=$(dlocate ldd | egrep "bin/ldd$" | head -n1 | cut -d' ' -f2)
- LDD=/usr/bin/ldd
- $LDD $@ | sed "s/\(.*local.*\)/\1/;s/\(.*not found.*\)/\1/" | tr -d ' '
-}
-
-exports()
-{
- if ( [ $# -ne 0 ] )
- then
- if ( [ $1 != "-" ] )
- then
- export LD_LIBRARY_PATH=${1}/lib
- export PKG_CONFIG_PATH=$LD_LIBRARY_PATH/pkgconfig
- export ACLOCAL_FLAGS="-I ${1}/share/aclocal"
- else
- unset LD_LIBRARY_PATH
- unset PKG_CONFIG_PATH
- unset ACLOCAL_FLAGS
- fi
- fi
-
- for i in LD_LIBRARY_PATH PKG_CONFIG_PATH ACLOCAL_FLAGS
- do
- if ( [ ! -z ${(P)i} ] ) ; then
- echo "$i: "${(P)i}""
- else
- echo "$i is unset."
- fi
- done
-}