Skip to content

Commit

Permalink
toolchain-funcs.eclass: gen_usr_ldscript: disable for android targets
Browse files Browse the repository at this point in the history
Android systems are guaranteed to not have split filesystems,
so disable ldscript logic for them.
  • Loading branch information
vapier committed Oct 13, 2015
1 parent d98a461 commit bf9884d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions eclass/toolchain-funcs.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ gen_usr_ldscript() {
# Eventually we'd like to get rid of this func completely #417451
case ${CTARGET:-${CHOST}} in
*-darwin*) ;;
*-android*) return 0 ;;
*linux*|*-freebsd*|*-openbsd*|*-netbsd*)
use prefix && return 0 ;;
*) return 0 ;;
Expand Down

0 comments on commit bf9884d

Please sign in to comment.