diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2008-08-12 18:19:08 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2008-08-12 18:19:08 +0000 |
commit | 4d2b059d5e51c6cd6cca3cc775268039657d3317 (patch) | |
tree | f8b23755a46f34b644fad110006fcf816c23751d /gcc/gcc.c | |
parent | c0285905394bb04acd7650f5ac1079c798ed1487 (diff) | |
download | gcc-4d2b059d5e51c6cd6cca3cc775268039657d3317.zip gcc-4d2b059d5e51c6cd6cca3cc775268039657d3317.tar.gz gcc-4d2b059d5e51c6cd6cca3cc775268039657d3317.tar.bz2 |
re PR libgomp/26165 (Cannot find libgomp.spec after 'make install' on x86_64 and ppc64)
PR libgomp/26165
* gcc.c (include_spec_function): Tweak call to find_a_file.
From-SVN: r139031
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |