mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
12 lines
434 B
Python
12 lines
434 B
Python
--- tools/grit/grit/node/base.py.orig 2025-04-04 08:52:13 UTC
|
|
+++ tools/grit/grit/node/base.py
|
|
@@ -496,7 +496,8 @@ class Node:
|
|
value = defs
|
|
|
|
elif name == 'is_linux':
|
|
- value = target_platform == 'linux'
|
|
+ value = (target_platform == 'linux'
|
|
+ or 'bsd' in target_platform)
|
|
elif name == 'is_chromeos':
|
|
value = target_platform == 'chromeos'
|
|
elif name == 'is_macosx':
|