diff options
author | Jim Wilson <wilson@tuliptree.org> | 1995-11-01 01:03:31 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1995-11-01 01:03:31 +0000 |
commit | 52b5deb99701ffb46be5e77c04c64f1522b0f2e3 (patch) | |
tree | 276ccc1dc43822e983b50170eedc8de5da6b2865 /configure.in | |
parent | 76ab264518964664b9f31db197dbcb63f2ebdbbc (diff) | |
download | gdb-52b5deb99701ffb46be5e77c04c64f1522b0f2e3.zip gdb-52b5deb99701ffb46be5e77c04c64f1522b0f2e3.tar.gz gdb-52b5deb99701ffb46be5e77c04c64f1522b0f2e3.tar.bz2 |
Patches to make fixincludes work for cross toolchains.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9301f89..bc8c1b9 100644 --- a/configure.in +++ b/configure.in @@ -251,7 +251,7 @@ fi copy_dirs= # Handle --with-headers=XXX. The contents of the named directory are -# copied to $(tooldir)/include. +# copied to $(tooldir)/sys-include. if [ x"${with_headers}" != x ]; then if [ x${is_cross_compiler} = xno ]; then echo 1>&2 '***' --with-headers is only supported when cross compiling @@ -261,7 +261,7 @@ if [ x"${with_headers}" != x ]; then "") x=${prefix} ;; *) x=${exec_prefix} ;; esac - copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/include" + copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include" fi # Handle --with-libs=XXX. Multiple directories are permitted. The |