remove trailing slashes from srcdir so gdb-mode won't get cranky

This commit is contained in:
K. Richard Pixley 1992-03-11 06:07:29 +00:00
parent 9d98d2ac35
commit c9b0df66be
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,8 @@
Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com) Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
* configure: remove trailing slashes from srcdir. Otherwise emacs
gdb mode gets cranky.
* Makefile.in: drop flex. make stamp files work. * Makefile.in: drop flex. make stamp files work.
* configure: use relative paths for configure and srcdir whenever * configure: use relative paths for configure and srcdir whenever

9
configure vendored
View File

@ -108,7 +108,8 @@ do
exec_prefixoption="-exec_prefix=${exec_prefix}" exec_prefixoption="-exec_prefix=${exec_prefix}"
next_exec_prefix= next_exec_prefix=
elif [ -n "${next_site}" ] ; then site=${arg} ; next_site= elif [ -n "${next_site}" ] ; then site=${arg} ; next_site=
elif [ -n "${next_srcdir}" ] ; then srcdir=${arg} ; next_srcdir= # remove any possible trailing slash from srcdir. See note below.
elif [ -n "${next_srcdir}" ] ; then srcdir=`echo ${arg} | sed -e 's:/$::'` ; next_srcdir=
elif [ -n "${next_program_prefix}" ] ; then elif [ -n "${next_program_prefix}" ] ; then
program_prefix=${arg} program_prefix=${arg}
program_prefixoption="-program_prefix=${program_prefix}" program_prefixoption="-program_prefix=${program_prefix}"
@ -185,8 +186,12 @@ do
-site | --site | --sit) -site | --site | --sit)
next_site=yes next_site=yes
;; ;;
# remove trailing slashes. Otherwise, when the file name gets
# bolted into an object file as debug info, it has two slashes in
# it. Ordinarily this is ok, but emacs takes double slash to
# mean "forget the first part".
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
srcdir=`echo ${arg} | sed 's/^[-a-z]*=//'` srcdir=`echo ${arg} | sed 's/^[-a-z]*=//' | sed -e 's:/$::'`
;; ;;
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr) -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
next_srcdir=yes next_srcdir=yes