Home | History | Annotate | Download | only in dist

Lines Matching refs:tmp_pathspec

6138   char *tmp_pathspec;
6205 tmp_pathspec = find_executable (argv[0]);
6206 if (tmp_pathspec == NULL)
6210 tmp_pathspec);
6212 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6216 XFREE (tmp_pathspec);
6223 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6225 actual_cwrapper_name = tmp_pathspec;
6226 tmp_pathspec = 0;
6231 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6233 target_name = tmp_pathspec;
6234 tmp_pathspec = 0;
6252 tmp_pathspec = xstrdup (newargz[0]);
6258 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6259 XFREE (tmp_pathspec);
6260 tmp_pathspec = NULL;
6519 char *tmp_pathspec = xstrdup (pathspec);
6522 while (strlen (tmp_pathspec) && !has_symlinks)
6526 tmp_pathspec);
6527 if (lstat (tmp_pathspec, &s) == 0)
6536 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6537 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6539 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6550 tmp_pathspec, nonnull (strerror (errno)));
6553 XFREE (tmp_pathspec);
6560 tmp_pathspec = realpath (pathspec, buf);
6561 if (tmp_pathspec == 0)
6566 return xstrdup (tmp_pathspec);