+gdbf12cvscheckout
authorjkratoch <>
Mon, 14 Dec 2009 18:37:25 +0000 (18:37 +0000)
committerjkratoch <>
Mon, 14 Dec 2009 18:37:25 +0000 (18:37 +0000)
.bashrc

diff --git a/.bashrc b/.bashrc
index 5a18e38..fcdd65b 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -338,6 +338,12 @@ function gdbdevelcvscheckout {(set -ex
        cd gdb-devel
        make sources
        );}
+function gdbf12cvscheckout {(set -ex
+       ! test -d gdb-F-12
+       (set +x;CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/pkgs cvs checkout -d gdb-F-12 rpms/gdb/F-12)
+       cd gdb-F-12
+       make sources
+       );}
 function uri_escape   { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape   $_;'; };
 function uri_unescape { perl -MURI::Escape -le '$_=<>;chomp;print uri_unescape $_;'; };
 function n { if [ "$1" = "-p" ];then renice +19 "$@";ionice -c3 "$@";else nice -n19 ionice -c3 "$@";fi };