xmlrpc-c: add build of xmlrpc tools directory (#39580)

This commit is contained in:
eflumerf 2023-08-23 02:41:27 -05:00 committed by GitHub
parent 34ff7605e6
commit 25b8cf93d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,3 +24,13 @@ def configure_args(self):
args.append("--build=arm-linux")
return args
def build(self, spec, prefix):
make()
with working_dir("tools"):
make()
def install(self, spec, prefix):
make("install")
with working_dir("tools"):
make("install")