mirror of
https://github.com/mirror/make.git
synced 2025-01-30 06:11:02 +08:00
Formerly commands.c.~9~
This commit is contained in:
parent
4eb52d9a45
commit
8ef3af8bed
12
commands.c
12
commands.c
@ -175,7 +175,17 @@ set_file_variables (file)
|
||||
unsigned int Dlen, Flen;
|
||||
|
||||
c = dep_name (d);
|
||||
len = strlen (c);
|
||||
|
||||
#ifndef NO_ARCHIVES
|
||||
if (ar_name (c))
|
||||
{
|
||||
c = index (c, '(') + 1;
|
||||
len = strlen (c) - 1;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
len = strlen (c);
|
||||
|
||||
bcopy (c, cp, len);
|
||||
cp += len;
|
||||
*cp++ = ' ';
|
||||
|
Loading…
Reference in New Issue
Block a user