aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2008-08-12 18:19:08 +0000
committerNathan Froyd <froydnj@gcc.gnu.org>2008-08-12 18:19:08 +0000
commit4d2b059d5e51c6cd6cca3cc775268039657d3317 (patch)
treef8b23755a46f34b644fad110006fcf816c23751d /gcc/gcc.c
parentc0285905394bb04acd7650f5ac1079c798ed1487 (diff)
downloadgcc-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 8c0aa82..75dc67d 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;