Browse Source

Fixed Build-Pkg to only use *.patch.cross patches at cross-compile stage

karasz/new-early
Christian Wiese 17 years ago
parent
commit
58c1631e5b
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      scripts/Build-Pkg

+ 6
- 6
scripts/Build-Pkg

@ -405,14 +405,14 @@ targetdir="$base/target/$target"
detect_patchfiles
if [ "$toolsdir" = "tools.cross" ]; then
if atstage toolchain; then
var_append patchfiles ' ' "`ls $confdir/*.patch.toolchain{,.$arch} \
2>/dev/null | tr '\n' ' '`"
fi
if atstage toolchain; then
var_append patchfiles ' ' "`ls $confdir/*.patch.toolchain{,.$arch} \
2>/dev/null | tr '\n' ' '`"
fi
if atstage cross; then
var_append patchfiles ' ' "`ls $confdir/*.patch.cross{,.$arch} \
2>/dev/null | tr '\n' ' '`"
2>/dev/null | tr '\n' ' '`"
fi
set_confopt

Loading…
Cancel
Save