From 1adcd149387a1c8138b3de3f07027522be681940 Mon Sep 17 00:00:00 2001 From: Michael Sokolov Date: Sun, 23 Jul 2000 17:41:56 +0000 Subject: [PATCH] * configure (topsrcdir): Don't use dirname. From-SVN: r35207 --- ChangeLog | 4 ++++ configure | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 71f92e4de81..d0f664a00dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-07-23 Michael Sokolov + + * configure (topsrcdir): Don't use dirname. + 2000-07-22 Jeffrey Oldham * MAINTAINERS: Add self to Write After Approval list. diff --git a/configure b/configure index 553a089af5e..9de3cc4eb12 100755 --- a/configure +++ b/configure @@ -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.