Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • builder/runrooted

    rd849d83 rd2a077a  
    8383        NEEDS=`../npl/findbuilddeps $PGMPATH` || exit 1
    8484        for NEED in $NEEDS; do
     85
     86                CONFIG=1
     87                echo -n "Finding dependency $NEED: "
     88                TGZ=`../npl/findpkg "$NEED"` || exit 1
     89                echo -n "$TGZ"
     90               
     91                PKGNAME=`basename "$TGZ"|sed 's/.tgz$//'`
     92
    8593                #already installed?
    86                 if grep -x "$NEED" ../npl/buildroot.list >/dev/null; then
     94                if [ -e "$BUILDROOT/var/log/packages/$PKGNAME" ]; then
     95                        echo " (already installed, skipping)"
    8796                        continue
    88                 fi
    89 
    90                 CONFIG=1
    91                 echo -n "Build-dependency $NEED installeren: "
    92                 TGZ=`../npl/findpkg "$NEED"` || exit 1
    93                 echo "$TGZ"
     97                else
     98                        echo " (installing)"
     99                fi
    94100
    95101                #Bepaal waar het pakketje in de buildroot moet terecht komen, ivm crosscompiling.
Note: See TracChangeset for help on using the changeset viewer.