diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2007-05-16 07:19:46 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2007-05-16 07:19:46 +0000 |
commit | fa1e8d8e04abc3c79eb2597a34ca7e57a27ecd42 (patch) | |
tree | 2c2cb16fad40ddff13d82cae21775564a3bdbe19 /ld/configure | |
parent | 017f71b6e8e47aa87ed6e08c6e19c4aa50466888 (diff) | |
download | gdb-fa1e8d8e04abc3c79eb2597a34ca7e57a27ecd42.zip gdb-fa1e8d8e04abc3c79eb2597a34ca7e57a27ecd42.tar.gz gdb-fa1e8d8e04abc3c79eb2597a34ca7e57a27ecd42.tar.bz2 |
ld/
* configure.in: Allow sysroots to be relocated under $prefix as
well as $exec_prefix.
* configure: Regenerate.
Diffstat (limited to 'ld/configure')
-rwxr-xr-x | ld/configure | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/ld/configure b/ld/configure index d34367d..d825ecf 100755 --- a/ld/configure +++ b/ld/configure @@ -4198,17 +4198,20 @@ if test "${with_sysroot+set}" = set; then TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"' use_sysroot=yes + if test "x$prefix" = xNONE; then + test_prefix=/usr/local + else + test_prefix=$prefix + fi if test "x$exec_prefix" = xNONE; then - if test "x$prefix" = xNONE; then - test_prefix=/usr/local - else - test_prefix=$prefix - fi + test_exec_prefix=$test_prefix else - test_prefix=$exec_prefix + test_exec_prefix=$exec_prefix fi case ${TARGET_SYSTEM_ROOT} in "${test_prefix}"|"${test_prefix}/"*|\ + "${test_exec_prefix}"|"${test_exec_prefix}/"*|\ + '${prefix}'|'${prefix}/'*|\ '${exec_prefix}'|'${exec_prefix}/'*) t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE" TARGET_SYSTEM_ROOT_DEFINE="$t" |