#!/bin/sh
IFS=:
for dir in $S_PKGUTILS_PATH ;  do
   if [ -f "$dir"/DESCRIPTION ] ; then
      echo $dir
      exit 0
   fi
done
exit 1
