Skip to content

Commit

Permalink
Don't use mkdir -p -p, cygwin can't handle that.
Browse files Browse the repository at this point in the history
  • Loading branch information
keesverruijt committed Jan 19, 2018
1 parent a452828 commit 4492093
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ all: bin
bin: rel/$(PLATFORM)

rel/$(PLATFORM):
$(MKDIR) -p rel/$(PLATFORM)
$(MKDIR) rel/$(PLATFORM)

clean:
for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean; done
Expand All @@ -50,7 +50,7 @@ zip:
.PHONY : $(SUBDIRS) clean install zip bin

$(DESTDIR)$(BINDIR):
$(MKDIR) -p $(DESTDIR)$(BINDIR)
$(MKDIR) $(DESTDIR)$(BINDIR)

$(DESTDIR)$(CONFDIR):
$(MKDIR) -p $(DESTDIR)$(CONFDIR)
$(MKDIR) $(DESTDIR)$(CONFDIR)

0 comments on commit 4492093

Please sign in to comment.