diff options
author | Nick Clifton <nickc@redhat.com> | 2009-09-25 19:25:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-09-25 19:25:04 +0000 |
commit | 30167e0a4a1ff0887f69450eeb990d4c3fc8f6ad (patch) | |
tree | 0bc59ec07573972d39254eca827e8c1e86562588 /configure | |
parent | 21d799b5c48956e71980143cb33035262984ed67 (diff) | |
download | gdb-30167e0a4a1ff0887f69450eeb990d4c3fc8f6ad.zip gdb-30167e0a4a1ff0887f69450eeb990d4c3fc8f6ad.tar.gz gdb-30167e0a4a1ff0887f69450eeb990d4c3fc8f6ad.tar.bz2 |
* configure.ac: Pass any --cache-file=/dev/null option on to
subconfigures.
* configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -6750,9 +6750,11 @@ serialization_dependencies=serdep.tmp # Base args. Strip norecursion, cache-file, srcdir, host, build, # target, nonopt, and variable assignments. These are the ones we -# might not want to pass down to subconfigures. Also strip -# program-prefix, program-suffix, and program-transform-name, so that -# we can pass down a consistent program-transform-name. +# might not want to pass down to subconfigures. The exception being +# --cache-file=/dev/null, which is used to turn off the use of cache +# files altogether, and which should be passed on to subconfigures. +# Also strip program-prefix, program-suffix, and program-transform-name, +# so that we can pass down a consistent program-transform-name. baseargs= keep_next=no skip_next=no @@ -6791,6 +6793,13 @@ do esac case "$ac_arg" in + --cache-file=/dev/null | \ + -cache-file=/dev/null ) + # Handled here to avoid the test to skip args below. + baseargs="$baseargs '$ac_arg'" + # Assert: $separate_arg should always be no. + keep_next=$separate_arg + ;; --no*) continue ;; |