fi
# copy package control
-control=$(find src -name $paket.control)
+control=$(find -L src -name $paket.control)
if [ -z "$control" ]
then
echo "warning: control file not found"
fi
# check for copy file
-copy=$(find src -name $paket.cp)
+copy=$(find -L src -name $paket.cp)
if [ -n "$copy" ]
then
ln -sf $copy .
fi
# check for postinst
-postinst=$(find src -name $paket.postinst)
+postinst=$(find -L src -name $paket.postinst)
if [ -n "$postinst" ]
then
ln -sf $postinst .