[skip build]
[skip test]
This commit is contained in:
alexey.lysiuk 2023-03-20 15:33:41 +02:00
parent 9795100dc9
commit b7b62e156c
1 changed files with 11 additions and 2 deletions

View File

@ -16,6 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import os
import subprocess
from ..state import BuildState
@ -105,19 +106,27 @@ class Radare2Target(base.MesonTarget):
search_subpath = str(state.install_path)
replace_subpath = '/usr/local'
userconf_path = state.build_path / 'r_userconf.h'
userconf_time = os.stat(userconf_path).st_mtime
def fix_paths(line: str):
return line.replace(search_subpath, replace_subpath) if search_subpath in line else line
self.update_text_file(state.build_path / 'r_userconf.h', fix_paths)
self.update_text_file(userconf_path, fix_paths)
os.utime(userconf_path, (userconf_time, userconf_time))
# Fix commit hash in r_version.h
tip_prefix = '#define R2_GITTIP '
tip_value = 'ab809417aa6b676922f95cf77861924eb90e7ef2'
version_path = state.build_path / 'r_version.h'
version_time = os.stat(version_path).st_mtime
def fix_commit(line: str):
return f'{tip_prefix}"{tip_value}"\n' if line.startswith(tip_prefix) else line
self.update_text_file(state.build_path / 'r_version.h', fix_commit)
self.update_text_file(version_path, fix_commit)
os.utime(version_path, (version_time, version_time))
class SeverZipTarget(base.MakeTarget):