Commit fcc9ad83 by Michael Meissner

Fix typo.

From-SVN: r13504
parent 5d644692
...@@ -2268,7 +2268,7 @@ process_command (argc, argv) ...@@ -2268,7 +2268,7 @@ process_command (argc, argv)
} }
temp = getenv ("LIBRARY_PATH"); temp = getenv ("LIBRARY_PATH");
if (temp && *cross_compile != '0') if (temp && *cross_compile == '0')
{ {
char *startp, *endp; char *startp, *endp;
char *nstore = (char *) alloca (strlen (temp) + 3); char *nstore = (char *) alloca (strlen (temp) + 3);
...@@ -2300,7 +2300,7 @@ process_command (argc, argv) ...@@ -2300,7 +2300,7 @@ process_command (argc, argv)
/* Use LPATH like LIBRARY_PATH (for the CMU build program). */ /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
temp = getenv ("LPATH"); temp = getenv ("LPATH");
if (temp && *cross_compile != '0') if (temp && *cross_compile == '0')
{ {
char *startp, *endp; char *startp, *endp;
char *nstore = (char *) alloca (strlen (temp) + 3); char *nstore = (char *) alloca (strlen (temp) + 3);
...@@ -4264,7 +4264,7 @@ main (argc, argv) ...@@ -4264,7 +4264,7 @@ main (argc, argv)
/* The fact that these are done here, after reading the specs file, /* The fact that these are done here, after reading the specs file,
means that it cannot be found in these directories. means that it cannot be found in these directories.
But that's okay. It should never be there anyway. */ But that's okay. It should never be there anyway. */
if (*cross_compile != '0') if (*cross_compile == '0')
{ {
#ifdef MD_EXEC_PREFIX #ifdef MD_EXEC_PREFIX
add_prefix (&exec_prefixes, md_exec_prefix, 0, 0, NULL_PTR); add_prefix (&exec_prefixes, md_exec_prefix, 0, 0, NULL_PTR);
......
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