Depend on makedirs target so the copy does not fail

This commit is contained in:
deadwood 2021-05-02 14:55:16 +02:00
parent 057a56ccf4
commit ab799f072b
1 changed files with 2 additions and 2 deletions

View File

@ -122,11 +122,11 @@ all: $(CONFIGUREFILES) crosstools-toolchain features
AROSGDBFILES=
$(AROSDIR)/.gdbinit: $(SRCDIR)/developer/debug/gdb/_gdbinit
$(AROSDIR)/.gdbinit: $(SRCDIR)/developer/debug/gdb/_gdbinit makedirs
@$(ECHO) Copying host .gdbinit for AROS ...
@$(CP) $(SRCDIR)/developer/debug/gdb/_gdbinit $(AROSDIR)/.gdbinit ;
$(AROSDIR)/.gdb_ignore_errors.py: $(SRCDIR)/developer/debug/gdb/ignore_errors.py
$(AROSDIR)/.gdb_ignore_errors.py: $(SRCDIR)/developer/debug/gdb/ignore_errors.py makedirs
@$(ECHO) Copying host gdb support files for AROS ...
@$(CP) $(SRCDIR)/developer/debug/gdb/ignore_errors.py $(AROSDIR)/.gdb_ignore_errors.py ; \