diff options
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/configure b/gdb/configure index de746e8..f638268 100755 --- a/gdb/configure +++ b/gdb/configure @@ -1488,7 +1488,7 @@ Optional Packages: automatically relocate this path for source files --with-auto-load-dir=PATH directories from which to load auto-loaded scripts - [$datadir/auto-load] + [$debugdir:$datadir/auto-load] --with-auto-load-safe-path=PATH directories safe to hold auto-loaded files [--with-auto-load-dir] @@ -4970,10 +4970,10 @@ $as_echo_n "checking for default auto-load directory... " >&6; } if test "${with_auto_load_dir+set}" = set; then : withval=$with_auto_load_dir; else - with_auto_load_dir='$datadir/auto-load' + with_auto_load_dir='$debugdir:$datadir/auto-load' fi -escape_dir=`echo $with_auto_load_dir | sed 's/[$]datadir\>/\\\\\\\\\\\\&/g'` +escape_dir=`echo $with_auto_load_dir | sed 's/[$]\(datadir\|debugdir\)\>/\\\\\\\\\\\\&/g'` test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' @@ -5000,7 +5000,7 @@ else with_auto_load_safe_path="$with_auto_load_dir" fi -escape_dir=`echo $with_auto_load_safe_path | sed 's/[$]datadir\>/\\\\\\\\\\\\&/g'` +escape_dir=`echo $with_auto_load_safe_path | sed 's/[$]\(datadir\|debugdir\)\>/\\\\\\\\\\\\&/g'` test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' |