From: Jeff Law Date: Sun, 23 Jul 2000 17:42:34 +0000 (+0000) Subject: * configure (topsrcdir): Don't use dirname. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25c6c1126869b8a7070f37b8a0f8a1fa5a3ade47;p=binutils-gdb.git * configure (topsrcdir): Don't use dirname. --- diff --git a/ChangeLog b/ChangeLog index 080ed2d2d27..0e57d7fbefe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-07-23 Michael Sokolov + + * configure (topsrcdir): Don't use dirname. + 2000-07-20 Jason Merrill * configure.in: Remove all references to libg++ and librx. diff --git a/configure b/configure index 5bb72227d9f..dfc176263cf 100755 --- a/configure +++ b/configure @@ -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.