mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-21 02:51:43 +00:00
aedi: fix gmake target build
gmake target wasn't updated after removal of target's directory was introduced
This commit is contained in:
parent
0ad8a68b66
commit
24f30692d5
1 changed files with 4 additions and 0 deletions
|
@ -65,6 +65,10 @@ class GmakeTarget(ConfigureMakeDependencyTarget):
|
|||
def __init__(self, name='gmake'):
|
||||
super().__init__(name)
|
||||
|
||||
# Target's directory is removed before configuration step
|
||||
# gmake cannot be used to build itself, use system's make instead
|
||||
self.tool = 'make'
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.download_source(
|
||||
'https://ftp.gnu.org/gnu/make/make-4.3.tar.lz',
|
||||
|
|
Loading…
Reference in a new issue