diff options
author | carlos <carlos@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-08 16:52:05 +0000 |
---|---|---|
committer | carlos <carlos@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-08 16:52:05 +0000 |
commit | 41c555b54c5dc5fc2e27fd5c1cbb5c9b241e6dcf (patch) | |
tree | 143a3cfe8cd127a29f65e3825cba499045cdc502 /gcc/configure | |
parent | 0873bfe5e3e9004382c8445db24dff5a197236e0 (diff) | |
download | gcc-41c555b54c5dc5fc2e27fd5c1cbb5c9b241e6dcf.tar.gz |
gcc/
2006-11-08 Carlos O'Donell <carlos@codesourcery.com>
* configure.ac: Do not set PREFIX_INCLUDE_DIR if $prefix is NONE.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/configure b/gcc/configure index 18a7879a620..7723fc44841 100755 --- a/gcc/configure +++ b/gcc/configure @@ -16176,7 +16176,8 @@ _ACEOF fi if test x$with_sysroot = x && test x$host = x$target \ - && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then + && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" \ + && test "$prefix" != "NONE"; then cat >>confdefs.h <<_ACEOF #define PREFIX_INCLUDE_DIR "$prefix/include" |