From bea1ff6d61050b3065ed18c5ea73705b7d4490a4 Mon Sep 17 00:00:00 2001 From: dmiller Date: Sat, 30 Mar 2019 03:24:48 +0000 Subject: [PATCH] Avoid infinite loop on make clean with included libpcap --- libpcap/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libpcap/Makefile.in b/libpcap/Makefile.in index 38e7bb1bc..7723396cb 100644 --- a/libpcap/Makefile.in +++ b/libpcap/Makefile.in @@ -711,8 +711,8 @@ uninstall-rpcapd: clean: rm -f $(CLEANFILES) - cd rpcapd; $(MAKE) clean - cd testprogs; $(MAKE) clean + cd rpcapd && $(MAKE) clean + cd testprogs && $(MAKE) clean distclean: clean rm -f Makefile config.cache config.log config.status \