diff options
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index c99a334..8913825 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1482,15 +1482,10 @@ fi # Expand extra_headers to include complete path. # This substitutes for lots of t-* files. extra_headers_list= -if test "x$extra_headers" = x -then true -else - # Prepend ${srcdir}/config/${cpu_type}/ to every entry in extra_headers. - for file in $extra_headers; - do - extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}" - done -fi +# Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers. +for file in ${extra_headers} ; do + extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}" +done # Add a definition of USE_COLLECT2 if system wants one. case $use_collect2 in |