diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-05-30 03:50:06 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-05-30 03:50:06 +0000 |
commit | bf12ee7db2082d82c9e8b84947a207686da289d7 (patch) | |
tree | 19092de533b819075e72b085579a9e483f0c38f2 /Build | |
parent | d2400fd443b3d4e2c99bf2a9ee173a8460a6fda1 (diff) |
call configure with absolute path, to avoid build problems
on systems which lask the "BSD-compatible install" (e.g. Solaris),
because texk/Makefile.in and texk/web2c/Makefile.in are currently broken
in this case - see http://tug.org/pipermail/tex-live/2008-May/015857.html
git-svn-id: svn://tug.org/texlive/trunk@8412 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/Build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/Build b/Build/source/Build index ad973538c1c..f1dad2bac33 100755 --- a/Build/source/Build +++ b/Build/source/Build @@ -15,14 +15,14 @@ LANG=C # cd to our source directory. mydir=`dirname $0` cd $mydir || exit 1 +mydir=`pwd` : ${TL_WORKDIR=Work} # allow override of install destination. if test -z "$TL_INSTALL_DEST"; then - H=`pwd` test -d inst || mkdir -p inst/texmf # avoid configure warnings - TL_INSTALL_DEST=$H/inst + TL_INSTALL_DEST=$mydir/inst fi # allow override of make program. @@ -46,7 +46,7 @@ test -d $TL_WORKDIR || mkdir $TL_WORKDIR cd $TL_WORKDIR || exit 1 # allow override of configure location, just in case. -: ${TL_CONFIGURE=../configure} +: ${TL_CONFIGURE=$mydir/configure} # allow override of xdvi toolkit, default to standard xaw. : ${TL_CONF_XDVI_TOOLKIT=--with-xdvi-x-toolkit=xaw} |