mirror of
https://github.com/holub/mame
synced 2025-05-11 00:28:49 +03:00
Fix a bug in makedep which will caused includes on the first line of the file like in skyraid.h to be ignored. [Couriersud]
This commit is contained in:
parent
adce78fbe2
commit
7f400e7393
@ -435,12 +435,16 @@ static file_entry *compute_dependencies(int srcrootlen, const astring *srcfile)
|
|||||||
int scan = index;
|
int scan = index;
|
||||||
dependency *dep;
|
dependency *dep;
|
||||||
int start;
|
int start;
|
||||||
|
int just_continue = 0;
|
||||||
|
|
||||||
/* first make sure we're not commented or quoted */
|
/* first make sure we're not commented or quoted */
|
||||||
for (scan = index; scan > 2 && filedata[scan] != 13 && filedata[scan] != 10; scan--)
|
for (scan = index; scan > 2 && filedata[scan] != 13 && filedata[scan] != 10; scan--)
|
||||||
if ((filedata[scan] == '/' && filedata[scan - 1] == '/') || filedata[scan] == '"')
|
if ((filedata[scan] == '/' && filedata[scan - 1] == '/') || filedata[scan] == '"')
|
||||||
|
{
|
||||||
|
just_continue = 1;
|
||||||
break;
|
break;
|
||||||
if (filedata[scan] != 13 && filedata[scan] != 10)
|
}
|
||||||
|
if (just_continue)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* scan forward to find the quotes or bracket */
|
/* scan forward to find the quotes or bracket */
|
||||||
|
Loading…
Reference in New Issue
Block a user