From: Jim Wilson Date: Wed, 1 Nov 1995 01:03:31 +0000 (+0000) Subject: Patches to make fixincludes work for cross toolchains. X-Git-Tag: gdb-4_18~10317 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52b5deb99701ffb46be5e77c04c64f1522b0f2e3;p=external%2Fbinutils.git Patches to make fixincludes work for cross toolchains. --- diff --git a/ChangeLog b/ChangeLog index 1f709c6..5ce10c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -nTue Oct 31 10:29:36 1995 steve chamberlain +Tue Oct 31 16:57:32 1995 Jim Wilson + + * configure.in (copy_dirs): Use sys-include instead of include + for --with-headers option. + +Tue Oct 31 10:29:36 1995 steve chamberlain * Makefile.in, configure.in: Make winsup builds work with new scheme. 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