Commit 607a4f7d by Richard Stallman

*** empty log message ***

From-SVN: r1065
parent f5188608
...@@ -839,6 +839,7 @@ static char *gcc_exec_prefix; ...@@ -839,6 +839,7 @@ static char *gcc_exec_prefix;
#ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */ #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
#undef MD_EXEC_PREFIX #undef MD_EXEC_PREFIX
#undef MD_STARTFILE_PREFIX #undef MD_STARTFILE_PREFIX
#undef MD_STARTFILE_PREFIX_1
#endif #endif
#ifndef STANDARD_EXEC_PREFIX #ifndef STANDARD_EXEC_PREFIX
...@@ -858,6 +859,9 @@ static char *md_exec_prefix = MD_EXEC_PREFIX; ...@@ -858,6 +859,9 @@ static char *md_exec_prefix = MD_EXEC_PREFIX;
#ifdef MD_STARTFILE_PREFIX #ifdef MD_STARTFILE_PREFIX
static char *md_startfile_prefix = MD_STARTFILE_PREFIX; static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
#endif #endif
#ifdef MD_STARTFILE_PREFIX_1
static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
#endif
static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX; static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
static char *standard_startfile_prefix_1 = "/lib/"; static char *standard_startfile_prefix_1 = "/lib/";
static char *standard_startfile_prefix_2 = "/usr/lib/"; static char *standard_startfile_prefix_2 = "/usr/lib/";
...@@ -3061,6 +3065,10 @@ main (argc, argv) ...@@ -3061,6 +3065,10 @@ main (argc, argv)
add_prefix (&startfile_prefix, md_startfile_prefix, 0, 0, 0); add_prefix (&startfile_prefix, md_startfile_prefix, 0, 0, 0);
#endif #endif
#ifdef MD_STARTFILE_PREFIX_1
add_prefix (&startfile_prefix, md_startfile_prefix_1, 0, 0, 0);
#endif
add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0, 0); add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0, 0);
add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0, 0); add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0, 0);
add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0, 0); add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment