diff options
author | foobar <sniper@php.net> | 2005-05-27 13:10:01 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-05-27 13:10:01 +0000 |
commit | 9ef2ea19e56d734a6d77f4ea9f257d82e1a86c49 (patch) | |
tree | 6ac573f10645246b8cfe3d17e57f4c8e412f4c0c /Makefile.global | |
parent | ab94914a4bef070494f5668f4679c411b5ac4db4 (diff) | |
download | php-git-9ef2ea19e56d734a6d77f4ea9f257d82e1a86c49.tar.gz |
- Use $SED and $EGREP where possible
Diffstat (limited to 'Makefile.global')
-rw-r--r-- | Makefile.global | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.global b/Makefile.global index 6c4e1821d9..a95150990b 100644 --- a/Makefile.global +++ b/Makefile.global @@ -71,7 +71,7 @@ clean: distclean: clean rm -f config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h php5.spec sapi/apache/libphp5.module buildmk.stamp - egrep define'.*include/php' $(top_srcdir)/configure|sed 's/.*>//'|xargs rm -f + $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f find . -name Makefile | xargs rm -f .PHONY: all clean install distclean test |