forked from KolibriOS/kolibrios
Add empty $Revision$ macro.
svn keywords are neither substituted by git-svn nor catched by existing "$Revision a" macro, ignore them to not fail the build. git-svn-id: svn://kolibrios.org@7114 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
ed8c023f5a
commit
afdc8496fb
@ -31,16 +31,18 @@ macro line_space {
|
|||||||
}
|
}
|
||||||
d80x25_top:
|
d80x25_top:
|
||||||
line_full_top
|
line_full_top
|
||||||
cur_line_pos = 75
|
if __REV__ > 0
|
||||||
|
cur_line_pos = 75
|
||||||
store byte ' ' at d80x25_top+cur_line_pos+1
|
store byte ' ' at d80x25_top+cur_line_pos+1
|
||||||
rev_var = __REV__
|
rev_var = __REV__
|
||||||
while rev_var > 0
|
while rev_var > 0
|
||||||
store byte rev_var mod 10 + '0' at d80x25_top+cur_line_pos
|
store byte rev_var mod 10 + '0' at d80x25_top+cur_line_pos
|
||||||
cur_line_pos = cur_line_pos - 1
|
cur_line_pos = cur_line_pos - 1
|
||||||
rev_var = rev_var / 10
|
rev_var = rev_var / 10
|
||||||
end while
|
end while
|
||||||
store byte ' ' at d80x25_top+cur_line_pos
|
store byte ' ' at d80x25_top+cur_line_pos
|
||||||
store dword ' SVN' at d80x25_top+cur_line_pos-4
|
store dword ' SVN' at d80x25_top+cur_line_pos-4
|
||||||
|
end if
|
||||||
|
|
||||||
space_msg:
|
space_msg:
|
||||||
line_space
|
line_space
|
||||||
|
@ -15,6 +15,13 @@ macro $Revision a {
|
|||||||
\}
|
\}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
macro ignore_empty_revision_keyword {
|
||||||
|
; svn keywords are neither substituted by git-svn nor catched by $Revision
|
||||||
|
; macro above, ignore them to not fail the build
|
||||||
|
macro $Rev#ision$ \{\}
|
||||||
|
}
|
||||||
|
ignore_empty_revision_keyword
|
||||||
|
|
||||||
$Revision$
|
$Revision$
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user