diff options
author | Michael Sokolov <msokolov@ivan.Harhan.ORG> | 2000-07-23 17:41:56 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-07-23 11:41:56 -0600 |
commit | 1adcd149387a1c8138b3de3f07027522be681940 (patch) | |
tree | 9361f4ce7f3e276dd83e608f124f98b10889036c /configure | |
parent | 4eeaee5d0744aa39b340be11d3ff4589d1e37082 (diff) | |
download | gcc-1adcd149387a1c8138b3de3f07027522be681940.zip gcc-1adcd149387a1c8138b3de3f07027522be681940.tar.gz gcc-1adcd149387a1c8138b3de3f07027522be681940.tar.bz2 |
* configure (topsrcdir): Don't use dirname.
From-SVN: r35207
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -86,7 +86,7 @@ subdirs= target_alias=NOTARGET target_makefile_frag= undefs=NOUNDEFS -version="$Revision: 1.24 $" +version="$Revision: 1.26 $" x11=default bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' @@ -518,7 +518,8 @@ fi configsub=`echo ${progname} | sed 's/configure$/config.sub/'` moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'` -topsrcdir=`cd \`dirname ${progname}\`; pwd` +## the sed command below emulates the dirname command +topsrcdir=`cd \`echo ${progname} | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'\`; pwd` # this is a hack. sun4 must always be a valid host alias or this will fail. |