We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9caa2e commit 1bfb083Copy full SHA for 1bfb083
gyp/pylib/gyp/generator/make.py
@@ -1991,11 +1991,8 @@ def WriteTarget(
1991
and "product_dir" not in spec
1992
and self.toolset == "target"
1993
):
1994
- # On mac, products are created in install_path immediately.
1995
- assert install_path == self.output, "{} != {}".format(
1996
- install_path,
1997
- self.output,
1998
- )
+ # On macOS, products are created in install_path immediately.
+ assert install_path == self.output, f"{install_path} != {self.output}"
1999
2000
# Point the target alias to the final binary output.
2001
self.WriteMakeRule(
0 commit comments