Index: /trunk/psconfig/psbuild
===================================================================
--- /trunk/psconfig/psbuild	(revision 11636)
+++ /trunk/psconfig/psbuild	(revision 11637)
@@ -75,7 +75,17 @@
 foreach target (`cat $tagsets | grep -v \#`)
  set name = `echo $target | tr ':' ' '`
+
  set dir = $name[1]
  set tag = $name[2]
- set branch = $name[3]
+
+ set mode = "NORMAL"
+ set branch = 0
+
+ if ($#name >= 3) then
+   set branch = $name[3]
+ endif
+ if ($#name >= 4) then
+   set mode = $name[4]
+ endif
 
  if ("$start" != "") then
@@ -85,4 +95,9 @@
    endif
    set start = ""
+ endif
+
+ if ("$mode" == "SKIP") then
+    echo "skipping $dir"
+    continue 
  endif
 
