Fix DIRS find command to work on more system

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2017-06-19 10:24:31 +02:00 committed by Ian Campbell
parent 1ea64d33f0
commit a315e0b681
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
DIRS = $(shell find . -type d -depth 1)
DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
.PHONY: clean dirs $(DIRS)
push:

View File

@ -1,4 +1,4 @@
DIRS = $(shell find . -type d -depth 1)
DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
.PHONY: clean dirs $(DIRS)
push: $(DIRS)