diff options
author | Christian Cornelssen <ccorn@cs.tu-berlin.de> | 2003-01-31 20:35:22 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-01-31 20:35:22 +0100 |
commit | 63b87c2e8eb90ea476750fe111dcfd6338414230 (patch) | |
tree | ba570e6c44eaf9923a8ee9720c3cbfa907dfa820 /libffi/configure.in | |
parent | aba4e92ee15c81f59fe282a6dc019afb96efde37 (diff) | |
download | gcc-63b87c2e8eb90ea476750fe111dcfd6338414230.tar.gz |
configure.in: Adjust command to source config-ml.in to account for changes to the...
2003-01-31 Christian Cornelssen <ccorn@cs.tu-berlin.de>,
Andreas Schwab <schwab@suse.de>
* configure.in: Adjust command to source config-ml.in to account
for changes to the libffi_basedir definition.
(libffi_basedir): Remove ${srcdir} from value and include trailing
slash if nonempty.
* configure: Regenerate.
Co-Authored-By: Andreas Schwab <schwab@suse.de>
From-SVN: r62193
Diffstat (limited to 'libffi/configure.in')
-rw-r--r-- | libffi/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libffi/configure.in b/libffi/configure.in index 8fcf2f61422..b79c09037d1 100644 --- a/libffi/configure.in +++ b/libffi/configure.in @@ -22,15 +22,15 @@ dnl --with-target-subdir, --with-multisrctop, --with-multisubdir if test "${srcdir}" = "."; then if test "${with_target_subdir}" != "."; then - libffi_basedir="${srcdir}/${with_multisrctop}.." + libffi_basedir="${with_multisrctop}.." else - libffi_basedir="${srcdir}/${with_multisrctop}" + libffi_basedir="${with_multisrctop}" fi else - libffi_basedir="${srcdir}" + libffi_basedir= fi AC_SUBST(libffi_basedir) -AC_CONFIG_AUX_DIR(${libffi_basedir}/..) +AC_CONFIG_AUX_DIR(${libffi_basedir}..) AC_CANONICAL_HOST @@ -186,7 +186,7 @@ AC_OUTPUT(include/Makefile include/ffi.h Makefile, [ if test -n "$CONFIG_FILES"; then LD="${ORIGINAL_LD_FOR_MULTILIBS}" - ac_file=Makefile . ${libffi_basedir}/../config-ml.in + ac_file=Makefile . ${srcdir}/${libffi_basedir}/../config-ml.in fi ], srcdir=${srcdir} |