]> git.saurik.com Git - apple/xnu.git/blobdiff - pexpert/conf/tools/doconf/doconf.csh
xnu-1228.tar.gz
[apple/xnu.git] / pexpert / conf / tools / doconf / doconf.csh
index ae5ab908b2aaea72afcad0e27f29e254649eed9b..6fedb478640b36f9e0a05b0b79366e823cfd7f97 100755 (executable)
@@ -175,7 +175,9 @@ if (! -f $MASTER_LOCAL) set MASTER_LOCAL = ""
 if (! -f $MASTER_CPU_LOCAL) set MASTER_CPU_LOCAL = ""
 
 if (! -d $OBJDIR) then
-    echo "[ creating $OBJDIR ]"
+    if ($?beverbose) then
+        echo "[ creating $OBJDIR ]"
+    endif
     mkdir -p $OBJDIR
 endif
 
@@ -264,7 +266,9 @@ part != 0 {\
        rm -f $SYSCONF.new
     endif
     if (! -d $BLDDIR) then
-       echo "[ creating $BLDDIR ]"
+        if ($?beverbose) then
+           echo "[ creating $BLDDIR ]"
+        endif
        mkdir -p $BLDDIR
     endif
 #
@@ -299,7 +303,9 @@ part != 0 {\
     rm -f $SYSCONF
     mv $SYSCONF.new $SYSCONF
     if ($?doconfig) then
-       echo "[ configuring $SYSID ]"
+        if ($?beverbose) then
+           echo "[ configuring $SYSID ]"
+        endif
        if ($?profile) then
            $CONFIG_DIR/config -c $MASTER_DIR -p $SYSCONF
        else
@@ -307,7 +313,9 @@ part != 0 {\
        endif
     endif
     if ($?domake) then
-        echo "[ making $SYSID ]"
+        if ($?beverbose) then
+            echo "[ making $SYSID ]"
+        endif
         (cd $BLDDIR; make)
     endif
 end