# HG changeset patch # User "Yann E. MORIN" # Date 1295990092 -3600 # Node ID 1333e4ac89f0afc489fd1ecc71905f40b8db7c58 # Parent 3d480d12124ea4a8be616d53be9a2d7f379baa14 config/toolchain: force use of sysroot if OBSOLETE is not set Use of the sysroot is highly recommended, and the non-sysroot case is both obsolete and not widely tested. Before the non-sysroot case can go away, deprecate it. Signed-off-by: "Yann E. MORIN" diff -r 3d480d12124e -r 1333e4ac89f0 config/toolchain.in --- a/config/toolchain.in Tue Jan 25 21:59:03 2011 +0100 +++ b/config/toolchain.in Tue Jan 25 22:14:52 2011 +0100 @@ -2,6 +2,12 @@ comment "General toolchain options" +config FORCE_SYSROOT + bool + default y if !OBSOLETE + default n if OBSOLETE + select USE_SYSROOT + config USE_SYSROOT bool prompt "Use sysroot'ed toolchain"