diff options
author | Derick Rethans <derick@php.net> | 2002-06-26 18:19:34 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-06-26 18:19:34 +0000 |
commit | d1c4ea779bd9ef1113d5c7935eb0c67837eab4d0 (patch) | |
tree | dd2d8b21939a3d3f2c21eb75e440c60023441043 /Makefile.global | |
parent | 737de1bd0c19a1b77808affe8ba6d945e7ac831b (diff) | |
download | php-git-d1c4ea779bd9ef1113d5c7935eb0c67837eab4d0.tar.gz |
- Let make clean follow symlinks (tested on Linux, IRIX, Solaris, FreeBSD
and Tru64)
Diffstat (limited to 'Makefile.global')
-rw-r--r-- | Makefile.global | 4 |
1 files 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 |