mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 19:13:27 -04:00
12 lines
434 B
Python
12 lines
434 B
Python
--- tools/grit/grit/node/base.py.orig 2024-02-23 21:04:38 UTC
|
|
+++ tools/grit/grit/node/base.py
|
|
@@ -498,7 +498,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':
|