From d1c4ea779bd9ef1113d5c7935eb0c67837eab4d0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Wed, 26 Jun 2002 18:19:34 +0000 Subject: [PATCH] - Let make clean follow symlinks (tested on Linux, IRIX, Solaris, FreeBSD and Tru64) --- Makefile.global | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.global b/Makefile.global index 855bea5b68..acef6a04d2 100644 --- a/Makefile.global +++ b/Makefile.global @@ -60,8 +60,8 @@ test: sapi/cli/php $(top_builddir)/sapi/cli/php -c php.ini-dist $(top_srcdir)/run-tests.php clean: - find . -name \*.lo -o -name \*.o -o -name \*.la -o -name \*.a| xargs rm -f - find . -name .libs -a -type d|xargs rm -rf + find . -follow -name \*.lo -o -name \*.o -o -name \*.la -o -name \*.a| xargs rm -f + find . -follow -name .libs -a -type d|xargs rm -rf rm -f libphp4.la php sapi/cli/php modules/* libs/* distclean: clean -- 2.50.1