Skip to content
Snippets Groups Projects
Commit 990b199d authored by Oleg Hahm's avatar Oleg Hahm
Browse files

* let Make ignore non-empty directories on deleting (instead of letting rmdir ignore it)

parent e8af0c42
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@ all:
clean:
@for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
@if [ -d $(BINDIR) ] ; \
then rmdir --ignore-fail-on-non-empty $(BINDIR) ; \
-@if [ -d $(BINDIR) ] ; \
then rmdir $(BINDIR) ; \
fi
doc:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment