diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-12 18:19:08 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-12 18:19:08 +0000 |
commit | f9ebe19f31d6d6e404bce2bbd133a76575e041fa (patch) | |
tree | f8b23755a46f34b644fad110006fcf816c23751d /gcc/gcc.c | |
parent | e715d5652f0c53579bb322411cb35f32d411108c (diff) | |
download | gcc-f9ebe19f31d6d6e404bce2bbd133a76575e041fa.tar.gz |
PR libgomp/26165
* gcc.c (include_spec_function): Tweak call to find_a_file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139031 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 8c0aa820c58..75dc67d0e8e 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -8044,7 +8044,7 @@ include_spec_function (int argc, const char **argv) if (argc != 1) abort (); - file = find_a_file (&startfile_prefixes, argv[0], R_OK, 0); + file = find_a_file (&startfile_prefixes, argv[0], R_OK, true); read_specs (file ? file : argv[0], FALSE); return NULL; |