diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-03 05:40:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:31:04 -0500 |
commit | c829871308ffeadf04ca96f595d839e96ba3a926 (patch) | |
tree | 81f55eb4c26c410e163521aaa04b00c2634e3b89 /source4 | |
parent | 2af19867d42e26e761181f05245e3d82a4e8a5d4 (diff) | |
download | samba-c829871308ffeadf04ca96f595d839e96ba3a926.tar.gz samba-c829871308ffeadf04ca96f595d839e96ba3a926.tar.bz2 samba-c829871308ffeadf04ca96f595d839e96ba3a926.zip |
r8988: Don't remove Makefile.core in distclean...
(This used to be commit e8324ff8900fee2df6ca48d89e86e419f7223af9)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index d8283ce9a0..77c6d07a5d 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -510,7 +510,7 @@ clean: delheaders distclean: clean -rm -f bin/.dummy -rm -f include/config.h include/smb_build.h - -rm -f Makefile* + -rm -f Makefile Makefile.in -rm -f config.status -rm -f config.log config.cache -rm -f samba4-deps.dot @@ -519,7 +519,7 @@ distclean: clean __EOD__ if ($config{developer} eq "yes") { - $output .= "\t@-rm -f \$(_ALL_OBJS_OBJS:.o=.d)\n"; + $output .= "\t\@-rm -f \$(_ALL_OBJS_OBJS:.o=.d)\n"; } $output .= << '__EOD__'; |