X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/0c530ab8987f0ae6a1a3d9284f40182b88852816..2d21ac55c334faf3a56e5634905ed6987fc787d4:/libsa/conf/tools/doconf/doconf.csh diff --git a/libsa/conf/tools/doconf/doconf.csh b/libsa/conf/tools/doconf/doconf.csh index ae5ab908b..6fedb4786 100755 --- a/libsa/conf/tools/doconf/doconf.csh +++ b/libsa/conf/tools/doconf/doconf.csh @@ -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