From 189a1cb73857dc911bd31cf5a103f13318464da7 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Sun, 11 Sep 2005 15:21:50 +0000 Subject: [PATCH] Also work if there is no contrib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79f4e0884..ec4a0f8b7 100755 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ depend:: clean:: cd lib && $(MAKE) $@ - cd contrib && $(MAKE) $@ + if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) $@; fi test ! -f commands/Makefile || { cd commands && $(MAKE) $@; } if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) clean; fi -- 2.44.0