diff options
author | Jessica Clarke <jrtc27@FreeBSD.org> | 2023-08-23 16:56:56 +0000 |
---|---|---|
committer | Jessica Clarke <jrtc27@FreeBSD.org> | 2023-08-23 16:56:56 +0000 |
commit | 62f243acea24f52c6420720db615535045489c50 (patch) | |
tree | 7d494b3136b733ef370cd8633b47c2819e161a94 /tools | |
parent | 69cfdc81ea7bdfe1e7300a7e1106419156aee434 (diff) | |
download | src-62f243acea24f52c6420720db615535045489c50.tar.gz src-62f243acea24f52c6420720db615535045489c50.zip |
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build/make.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/build/make.py b/tools/build/make.py index e25922c9a70d..5c483e8b45be 100755 --- a/tools/build/make.py +++ b/tools/build/make.py @@ -100,7 +100,8 @@ def bootstrap_bmake(source_root, objdir_prefix): bmake_installed_version + "', treating as not present") configure_args = [ - "--with-default-sys-path=" + str(bmake_install_dir / "share/mk"), + "--with-default-sys-path=.../share/mk:" + + str(bmake_install_dir / "share/mk"), "--with-machine=amd64", # TODO? "--with-machine-arch=amd64", "--without-filemon", "--prefix=" + str(bmake_install_dir)] |