mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-07 12:30:07 +01:00
Merge pull request #1462 from moench-tegeder/env_can_set_make
GNUMakeBuilder: "make" command controllable via environment
This commit is contained in:
@@ -150,7 +150,9 @@ class Builder:
|
||||
# Concrete subclasses of abstract Builder interface
|
||||
|
||||
class GNUMakeBuilder(Builder):
|
||||
def __init__(self, commandName="make", formatName="GNUMake"):
|
||||
def __init__(self, commandName=None, formatName="GNUMake"):
|
||||
if commandName is None:
|
||||
commandName = os.environ.get("MAKE", "make")
|
||||
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user