mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
NetBSD: Stop hardcoding Python binary name
Caught with pkgsrc on NetBSD
This commit is contained in:
parent
88d500b28a
commit
2da6e45922
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ def configure(conf):
|
||||||
def build(bld):
|
def build(bld):
|
||||||
|
|
||||||
# Make signals_generated.h using signals.py
|
# Make signals_generated.h using signals.py
|
||||||
bld(rule = 'python ${SRC} ${TGT}', source = 'pbd/signals.py', target = 'pbd/signals_generated.h')
|
bld(rule = sys.executable + ' ${SRC} ${TGT}', source = 'pbd/signals.py', target = 'pbd/signals_generated.h')
|
||||||
|
|
||||||
# Library
|
# Library
|
||||||
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue