* prefix.c (translate_name): Don't strip trailing DIR_SEPARATOR.

From-SVN: r35485
This commit is contained in:
Jeff Law 2000-08-04 11:02:51 -06:00
parent 93284395b0
commit a6e919b382
2 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,8 @@
2000-07-17 Mark Elbrecht <snowball3@bigfoot.com>
2000-08-04 Donn Terry (donnte@microsoft.com)
* prefix.c (translate_name): Don't strip trailing DIR_SEPARATOR.
2000-08-04 Mark Elbrecht <snowball3@bigfoot.com>
* i386/x-djgpp: Delete code that conditionally modifies target_alias.
Delete code that conditionally modifies 'version'.

View File

@ -268,14 +268,10 @@ translate_name (name)
if (prefix == 0)
prefix = PREFIX;
/* Remove any trailing directory separator from what we got. First check
for an empty prefix. */
if (prefix[0] && IS_DIR_SEPARATOR (prefix[strlen (prefix) - 1]))
{
char * temp = xstrdup (prefix);
temp[strlen (temp) - 1] = 0;
prefix = temp;
}
/* We used to strip trailing DIR_SEPARATORs here, but that can
sometimes yield a result with no separator when one was coded
and intended by the user, causing two path components to run
together. */
return concat (prefix, name, NULL_PTR);
}