summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2004-01-02 21:54:28 +0000
committerMartin Schlemmer <azarah@gentoo.org>2004-01-02 21:54:28 +0000
commit8dda63b671844746d2b031337370a17c0bbad9e1 (patch)
treec7e3def57023b33fa76f80505f031091c6be541f /eclass/ELT-patches/tmp
parentadd amd64 keyword. Closing #36669 (diff)
downloadhistorical-8dda63b671844746d2b031337370a17c0bbad9e1.tar.gz
historical-8dda63b671844746d2b031337370a17c0bbad9e1.tar.bz2
historical-8dda63b671844746d2b031337370a17c0bbad9e1.zip
Mostly complete rewrite in effort to make it easier to maintain.
Add all the patches temporary in ELT-patches, until I can get a better place that do not need a tarball or such to download.
Diffstat (limited to 'eclass/ELT-patches/tmp')
-rw-r--r--eclass/ELT-patches/tmp/1.3.515
1 files changed, 15 insertions, 0 deletions
diff --git a/eclass/ELT-patches/tmp/1.3.5 b/eclass/ELT-patches/tmp/1.3.5
new file mode 100644
index 000000000000..29b70e09378d
--- /dev/null
+++ b/eclass/ELT-patches/tmp/1.3.5
@@ -0,0 +1,15 @@
+--- ltmain.sh Fri Jul 7 18:49:44 2000
++++ ltmain.sh Fri May 26 21:53:15 2000
+@@ -3462,7 +3462,11 @@
+ if test "$finalize" = yes && test -z "$run"; then
+ tmpdir="/tmp"
+ test -n "$TMPDIR" && tmpdir="$TMPDIR"
+- tmpdir="$tmpdir/libtool-$$"
++ tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
++ if test $? = 0 ; then :
++ else
++ tmpdir="$tmpdir/libtool-$$"
++ fi
+ if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
+ else
+ $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2