MAKEFLAGS: Fix forgotten `export'.
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 2cec0f7..848c00b 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -194,7 +194,7 @@ export HISTFILESIZE="$HISTSIZE"
 export GDBHISTFILE="$HOME/.gdb_history"
 export CVS_RSH="ssh"
 export TZ=":/usr/share/zoneinfo/Europe/Prague"
-MAKEFLAGS=
+export MAKEFLAGS=
 cpus="`getconf _NPROCESSORS_ONLN`"
 if [ -n "$cpus" ];then
        MAKEFLAGS="$MAKEFLAGS -j$[$cpus*3/2]"
@@ -375,6 +375,10 @@ if [ -f "$HOME/.bashrc.local" ];then source "$HOME/.bashrc.local";fi
 
 # Interactive part:
 for key in $HOME/.ssh/id_dsa;do
+
+       # DISABLED now.
+       continue
+
        [ -r "$key" ] || continue
        # Do not: [ -n "$SSH_TTY" ] && continue
        # as we may want foreign SSH keys too.