mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[svn-r3772] Purpose:
Update Description: Updated so that it's roughly consistent with the 1.3.5 release of libtool. The only difference between the two is some sharedlibrary path which Albert put in once a long time ago and it seems to work...Trying not to break^Wfix what's not broken. Platforms tested: Linux (with diff)
This commit is contained in:
parent
88b51be743
commit
852a24da19
@ -1656,7 +1656,7 @@ compiler."
|
|||||||
|
|
||||||
# Check that each of the things are valid numbers.
|
# Check that each of the things are valid numbers.
|
||||||
case "$current" in
|
case "$current" in
|
||||||
0 | [1-9] | [1-9][0-9]*) ;;
|
[0-9]*) ;;
|
||||||
*)
|
*)
|
||||||
$echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
|
$echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
|
||||||
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
||||||
@ -1665,7 +1665,7 @@ compiler."
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
case "$revision" in
|
case "$revision" in
|
||||||
0 | [1-9] | [1-9][0-9]*) ;;
|
[0-9]*) ;;
|
||||||
*)
|
*)
|
||||||
$echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
|
$echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
|
||||||
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
||||||
@ -1674,7 +1674,7 @@ compiler."
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
case "$age" in
|
case "$age" in
|
||||||
0 | [1-9] | [1-9][0-9]*) ;;
|
[0-9]*) ;;
|
||||||
*)
|
*)
|
||||||
$echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
|
$echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
|
||||||
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|
||||||
@ -3462,7 +3462,11 @@ libdir='$install_libdir'\
|
|||||||
if test "$finalize" = yes && test -z "$run"; then
|
if test "$finalize" = yes && test -z "$run"; then
|
||||||
tmpdir="/tmp"
|
tmpdir="/tmp"
|
||||||
test -n "$TMPDIR" && tmpdir="$TMPDIR"
|
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 :
|
if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
|
||||||
else
|
else
|
||||||
$echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
|
$echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
|
||||||
|
Loading…
Reference in New Issue
Block a user