Changes in tools/toolchain.sh [9f9450b:12735849] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/toolchain.sh

    r9f9450b r12735849  
    6262
    6363BASEDIR="`pwd`"
     64SRCDIR="$(readlink -f $(dirname "$0"))"
    6465BINUTILS="binutils-${BINUTILS_VERSION}${BINUTILS_RELEASE}.tar.bz2"
    6566GCC="gcc-${GCC_VERSION}.tar.bz2"
     
    440441        echo ">>> Applying patches"
    441442        for p in $BINUTILS_PATCHES; do
    442                 patch_sources "${BASEDIR}/${p}" 0 "binutils"
     443                patch_sources "${SRCDIR}/${p}" 0 "binutils"
    443444        done
    444445        for p in $GCC_PATCHES; do
    445                 patch_sources "${BASEDIR}/${p}" 0 "GCC"
     446                patch_sources "${SRCDIR}/${p}" 0 "GCC"
    446447        done
    447448        for p in $GDB_PATCHES; do
    448                 patch_sources "${BASEDIR}/${p}" 0 "GDB"
     449                patch_sources "${SRCDIR}/${p}" 0 "GDB"
    449450        done
    450451       
Note: See TracChangeset for help on using the changeset viewer.