diff options
author | Christopher Jones <sixd@php.net> | 2013-07-31 09:58:28 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2013-07-31 09:58:28 -0700 |
commit | e3a4b87e899ac55995f783e52379801973e199e7 (patch) | |
tree | 4d7b42a1cc393c79f83a9dbb470cd45be5269372 /Makefile.global | |
parent | 0625d5ce67bcaf4a82b0f95dc6968ca5473c8171 (diff) | |
download | php-git-e3a4b87e899ac55995f783e52379801973e199e7.tar.gz |
Fixed bug #62691 (solaris sed has no -i switch)
Make 'make distclean' remove generated DTrace .h file
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 5118de83fe..b714a654ca 100644 --- a/Makefile.global +++ b/Makefile.global @@ -118,7 +118,7 @@ clean: rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(OVERALL_TARGET) modules/* libs/* distclean: clean - rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp + rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f .PHONY: all clean install distclean test |