diff options
author | 2004-01-02 21:54:28 +0000 | |
---|---|---|
committer | 2004-01-02 21:54:28 +0000 | |
commit | 3bfd8ddb13d286ee8cd0e78d97ce8f9e8d6eecce (patch) | |
tree | eefd1ffec46b7d44722aaae31962c889d20ff73f /eclass/ELT-patches/tmp | |
parent | add amd64 keyword. Closing #36669 (diff) | |
download | gentoo-2-3bfd8ddb13d286ee8cd0e78d97ce8f9e8d6eecce.tar.gz gentoo-2-3bfd8ddb13d286ee8cd0e78d97ce8f9e8d6eecce.tar.bz2 gentoo-2-3bfd8ddb13d286ee8cd0e78d97ce8f9e8d6eecce.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.5 | 15 |
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 |