#!/bin/bash

piece=$1
ooo_build_tag=$2

source $OO_TOOLSDIR/piece/sys-setup

# remove bits from setup_native/source/packinfo to avoid
# conflists with bootstrap

DEST="$DESTDIR$OO_SOLVERDIR"

echo "Removing duplicated packinfo..."
for file in `ls $SRC_ROOT/setup_native/source/packinfo | grep -v CVS` ; do
    rm -f $DEST/bin/$file
done
