|
|
@ -262,15 +262,15 @@ fi |
|
|
|
confdir="" ; archdir="" |
|
|
|
|
|
|
|
if [ -z "$pkgdir" ] ; then |
|
|
|
for x in package/* ; do |
|
|
|
x=${x#package/} |
|
|
|
if [ -f "package/$x/$pkg/$pkg.desc" ] ; then |
|
|
|
for x in package/*/$pkg/$pkg.desc ; do |
|
|
|
if [ -f "$x" ] ; then |
|
|
|
if [ "$confdir" ] ; then |
|
|
|
echo_pkg_deny $stagelevel $pkg "in multiple trees" |
|
|
|
echo "Package in multiple trees: $pkg !" \ |
|
|
|
> $root/var/adm/logs/$stagelevel-$xpkg.err |
|
|
|
exit 1 |
|
|
|
fi |
|
|
|
x=${x#package/}; x=${x%%/*} |
|
|
|
confdir="$base/package/$x/$pkg" |
|
|
|
archdir="$base/download/$x/$pkg" |
|
|
|
repository=$x |
|
|
|