tools wrapper: fix config dependency
authorJoachim Nilsson <jocke@vmlinux.org>
Sun Sep 06 11:13:28 2009 +0200 (2009-09-06)
changeset 1514461d964d7df2
parent 1513 0a405ac9d9ce
child 1515 545179329bc5
tools wrapper: fix config dependency

The tools wrapper is not needed only for canadian crosses, but also
for every other type of toolchain.
config/toolchain.in
     1.1 --- a/config/toolchain.in	Sun Sep 06 10:45:31 2009 +0200
     1.2 +++ b/config/toolchain.in	Sun Sep 06 11:13:28 2009 +0200
     1.3 @@ -285,10 +285,7 @@
     1.4  
     1.5  endif # CROSS_NATIVE || CANADIAN
     1.6  
     1.7 -# Kept as a separate if block, even if it could go into the above block,
     1.8 -# because it seems better. No real reason, only that it seems right...
     1.9 -if CANADIAN
    1.10 -
    1.11 +# Necessary for all types of toolchains, at least for gcc > 4.3.x
    1.12  comment "Host specifics"
    1.13  
    1.14  choice
    1.15 @@ -322,6 +319,4 @@
    1.16      default "script" if TOOLS_WRAPPER_SCRIPT
    1.17      default "exec"   if TOOLS_WRAPPER_EXEC
    1.18  
    1.19 -endif # CROSS_NATIVE || CANADIAN
    1.20 -
    1.21  endmenu