mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 20:37:19 +08:00
configure.in (slibdir): Accept an --with-slibdir option.
* configure.in (slibdir): Accept an --with-slibdir option. Use "test" not "[" in configure. Default to $(libdir). From-SVN: r38784
This commit is contained in:
parent
eaf19aba9d
commit
5b15f27732
@ -1,3 +1,8 @@
|
||||
2001-01-07 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* configure.in (slibdir): Accept an --with-slibdir option.
|
||||
Use "test" not "[" in configure. Default to $(libdir).
|
||||
|
||||
2001-01-07 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/i386/i386.c (constant_call_address_operand): Accept
|
||||
|
491
gcc/configure
vendored
491
gcc/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -1808,13 +1808,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
|
||||
[ --enable-version-specific-runtime-libs Specify that runtime libraries shou
|
||||
ld be installed in a compiler-specific directory ])
|
||||
|
||||
if [ "${enable_version_specific_runtime_libs-no}" = "yes" ]; then
|
||||
AC_ARG_WITH(slibdir,
|
||||
[ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
|
||||
slibdir="$with_slibdir",
|
||||
if test "${enable_version_specific_runtime_libs+set}" = set; then
|
||||
slibdir='$(libsubdir)'
|
||||
elif [ "$host" != "$target" ]; then
|
||||
elif test "$host" != "$target"; then
|
||||
slibdir='$(build_tooldir)/lib'
|
||||
else
|
||||
slibdir='$(prefix)/lib'
|
||||
fi
|
||||
slibdir='$(libdir)'
|
||||
fi)
|
||||
AC_SUBST(slibdir)
|
||||
|
||||
# Nothing to do for FLOAT_H, float_format already handled.
|
||||
|
Loading…
Reference in New Issue
Block a user