diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-05-18 17:47:31 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-05-18 17:47:31 +0000 |
commit | aff139ffa6c125160f8a39ba8ea3c6f4933d64d5 (patch) | |
tree | cc4ba956e65cd299179ed6ede1d4f855114d98ad /gdb/configure | |
parent | f7bfa992dfca294af54332dc300691f20e184f69 (diff) | |
download | gdb-aff139ffa6c125160f8a39ba8ea3c6f4933d64d5.zip gdb-aff139ffa6c125160f8a39ba8ea3c6f4933d64d5.tar.gz gdb-aff139ffa6c125160f8a39ba8ea3c6f4933d64d5.tar.bz2 |
gdb/
Rename $ddir to $datadir.
* NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
* auto-load.c (auto_load_safe_path_vec_update)
(auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
* configure: Regenerate.
* configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
Likewise. Remove the 'use $ddir' help string.
gdb/doc/
Rename $ddir to $datadir.
* gdb.texinfo (Auto-loading, Auto-loading safe path)
(objfile-gdb.py file): Rename $ddir to $datadir.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gdb/configure b/gdb/configure index ec0d30b..de746e8 100755 --- a/gdb/configure +++ b/gdb/configure @@ -1487,11 +1487,10 @@ Optional Packages: --with-relocated-sources=PATH automatically relocate this path for source files --with-auto-load-dir=PATH - directories from which to load auto-loaded scripts, - use '$ddir' for -data-directory [$ddir/auto-load] + directories from which to load auto-loaded scripts + [$datadir/auto-load] --with-auto-load-safe-path=PATH - directories safe to hold auto-loaded files, use - $ddir for --with-gdb-datadir path + directories safe to hold auto-loaded files [--with-auto-load-dir] --without-auto-load-safe-path do not restrict auto-loaded files locations @@ -4971,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='$ddir/auto-load' + with_auto_load_dir='$datadir/auto-load' fi -escape_dir=`echo $with_auto_load_dir | sed 's/[$]ddir\>/\\\\\\\\\\\\&/g'` +escape_dir=`echo $with_auto_load_dir | sed 's/[$]datadir\>/\\\\\\\\\\\\&/g'` test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' @@ -5001,7 +5000,7 @@ else with_auto_load_safe_path="$with_auto_load_dir" fi -escape_dir=`echo $with_auto_load_safe_path | sed 's/[$]ddir\>/\\\\\\\\\\\\&/g'` +escape_dir=`echo $with_auto_load_safe_path | sed 's/[$]datadir\>/\\\\\\\\\\\\&/g'` test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' |