#!/bin/sh

use_only_in()
{
	if [ ! "$1" == "$LINVO_BUILD_TYPE" ]; then exit; fi
}

pack()
{
	PACK=`find -L $LINVO_REPOSITORY -name "*.t?z" | grep "/$1-[^-]*-[^-]*-[^-]*$"` 
	if [ "$PACK" ]; then 
		echo $PACK; 
	else
		echo $1;
	fi
}

define_true() 
{
	return; #dummy function
}

