The libtool problem was not because of the version (atleast on HPUX)..
mktemp was failing on HPUX and hence all those errors :-(..
********************
mkdir: cannot create directory `/libtool-26424': Permission denied
libtool: install: error: cannot create temporary directory `/libtool-26424'
********************
Interestingly, the mktemp stuff is missing in libtool 1.3.4 (freebsd port),
and hence everything was cool..
The following patch seems to fix the problem - any comments / suggestions
?..
$ diff -u libtool.ORG libtool
--- libtool.ORG Thu Nov 8 14:49:13 2001
+++ libtool Thu Nov 8 14:40:03 2001
@@ -4647,11 +4647,11 @@
if test "$finalize" = yes && test -z "$run"; then
tmpdir="/tmp"
test -n "$TMPDIR" && tmpdir="$TMPDIR"
- tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
- if test $? = 0 ; then :
- else
+ #tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
+ #if test $? = 0 ; then :
+ #else
tmpdir="$tmpdir/libtool-$$"
- fi
+ #fi
if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
else
$echo "$modename: error: cannot create temporary directory
\`$tmpdir'" 1>&2
Thx
-Madhu
-----Original Message-----
From: Greg Ames [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 08, 2001 1:02 PM
To: Chuck Murcko; Madhu Mathihalli; Cliff Woolley
Subject: new tarballs
Gentlemen,
I'm attaching the 2_0_28 tarball I just rolled. Could you please see if
builds OK on your platform before we make them public, since we had
trouble with 2_0_27? This was created on my ThinkPad (Mandrake Linux
8.0) which now has libtool 1.4.2. (Cliff: I'm hoping you'll check it on
BSD/OS.)
I don't expect anybody to spend a lot of time stress testing at this
point, since it hasn't even been installed on daedalus yet. I just want
to know if it will build and maybe serve a page.
Let me know if you prefer a .Z tarball to the .gz .
Thanks in advance,
Greg