From 2bc6223a5fe23474fca85549be16bcdfb6e4e359 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Wed, 30 Apr 2003 07:08:32 +0000 Subject: [PATCH] MFH fix for solaris find breakage --- Makefile.global | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.global b/Makefile.global index e286980e2a..c26b90048b 100644 --- a/Makefile.global +++ b/Makefile.global @@ -53,8 +53,10 @@ test: $(SAPI_CLI_PATH) $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' $(top_srcdir)/run-tests.php $(TESTS) clean: - find . -name \*.lo -o -name \*.o | xargs rm -f - find . -name \*.la -o -name \*.a | xargs rm -f + find . -name \*.lo | xargs rm -f + find . -name \*.o | xargs rm -f + find . -name \*.la | xargs rm -f + find . -name \*.a | xargs rm -f find . -name \*.so | xargs rm -f find . -name .libs -a -type d|xargs rm -rf rm -f libphp4.la $(SAPI_CLI_PATH) $(OVERALL_TARGET) modules/* libs/* -- 2.50.1