Lines Matching refs:dest
34 while read dest
36 [ -f ${dest} ] || continue;
41 egrep -s "$pkg_start" $dest && start=1
42 egrep -s "$pkg_end" $dest && end=1
45 echo "$0: missing Start or End delimiters for $PKGINST in $dest."
46 echo "$0: $dest may be corrupted and was not updated."
51 sed -e "/$pkg_start/,/$pkg_end/d" $dest > $tmpfile || exit 1
52 cp $tmpfile $dest || exit 1
54 test ! -s $dest && rm -f $dest
56 echo "$0: WARNING - no entries found in $dest for $PKGINST."