--- trunk/mage/usr/lib/mage/depwalker.sh 2011/12/28 09:59:15 1562 +++ trunk/mage/usr/lib/mage/depwalker.sh 2011/12/28 10:02:01 1563 @@ -98,8 +98,8 @@ } ##################### -## rumwandern /path/to/mage/file/.mage -rumwandern() +## depwalking /path/to/mage/file/.mage +depwalking() { unset DEPEND unset SDEPEND @@ -194,7 +194,7 @@ ### check ob DFILE schon installiert ist ### if [ ! -d ${MROOT}${INSTALLDB}/${PCAT}/${PNAME}-${PVER}-${PBUILD} ] then - rumwandern ${HIGHEST_DEPFILE} + depwalking ${HIGHEST_DEPFILE} ALLDEPS="${ALLDEPS} ${HIGHEST_DEPFILE}" fi fi @@ -241,7 +241,7 @@ if [ ! -d ${INSTALLDB}/${PCAT}/${PNAME}-${PVER}-${PBUILD} ] then # get dependencies the package - rumwandern ${MAGEFILE} + depwalking ${MAGEFILE} # now add the package itself to the dependencies # (if not exists already) @@ -254,7 +254,7 @@ done else # get all dependencies of the package - rumwandern ${MAGEFILE} + depwalking ${MAGEFILE} # now add the package itself to the dependencies ALLDEPS="${ALLDEPS} ${MAGEFILE}"