Print this page
XXX Remove nawk(1)

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/svr4pkg/pkgscripts/r.build.sh
          +++ new/usr/src/cmd/svr4pkg/pkgscripts/r.build.sh
↓ open down ↓ 33 lines elided ↑ open up ↑
  34   34                  rmdir $dest || error=yes
  35   35          elif [ -f $dest ]
  36   36          then
  37   37                  echo "Modifying $dest"
  38   38  
  39   39                  # Strip PKG_INSTALL_ROOT from dest if installation is to an
  40   40                  # alternate root.
  41   41  
  42   42                  if [ -n "$PKG_INSTALL_ROOT" -a "$PKG_INSTALL_ROOT" != "/" ]; then
  43   43                          client_dest=`echo $dest | \
  44      -                                /usr/bin/nawk -v rootdir="$PKG_INSTALL_ROOT" '{
       44 +                                /usr/xpg4/bin/awk -v rootdir="$PKG_INSTALL_ROOT" '{
  45   45                                      { print substr($0, length(rootdir)+1)} }'`
  46   46                          savepath=$PKGSAV/build${client_dest}
  47   47                  else
  48   48                          savepath=$PKGSAV/build${dest}
  49   49                  fi
  50   50  
  51   51                  chmod +x $savepath
  52   52                  if $savepath remove > /tmp/$$build
  53   53                  then
  54   54                          if [ ! -s /tmp/$$build ]
↓ open down ↓ 17 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX