Skip to content

Commit

Permalink
build: add ALLOW_UNSUPPORTED_SYSTEM on package builds
Browse files Browse the repository at this point in the history
This allows the package to built on FreeBSD versions where the upstream ports repo is no longer supported for
jaredhendrickson13 committed Oct 19, 2024
1 parent b6a2b69 commit 39d017b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/make_package.py
Original file line number Diff line number Diff line change
@@ -38,6 +38,9 @@ def __init__(self):
self.port_version = self.args.tag.split("_")[0]
self.port_revision = self.args.tag.split("_", maxsplit=1)[1]

# Allow package to build on systems that no longer have upstream ports support
os.environ['ALLOW_UNSUPPORTED_SYSTEM'] = 'yes'

# Run tasks for build mode
if self.args.host:
self.build_on_remote_host()

0 comments on commit 39d017b

Please sign in to comment.