diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-03 16:13:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:31:05 -0500 |
commit | 091aa07c51d9bc0d28a38cc9d3ce7599c961683d (patch) | |
tree | 129bccc72e4d1fe8a25ee490f7b6cd70044ae7b7 /source4/build | |
parent | 206ce778ee5280b2332f157024c67ebe71d3f735 (diff) | |
download | samba-091aa07c51d9bc0d28a38cc9d3ce7599c961683d.tar.gz samba-091aa07c51d9bc0d28a38cc9d3ce7599c961683d.tar.xz samba-091aa07c51d9bc0d28a38cc9d3ce7599c961683d.zip |
r9001: Fix warning in make clean
(This used to be commit 84bd51279e1302bdecca99fb3f155ba2f6e0bbf5)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 514bfac0b4..0c4df18369 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -497,16 +497,12 @@ clean: delheaders heimdal_clean @echo Removing objects @-find . -name '*.o' -exec rm -f '{}' \; @echo Removing binaries - @-rm -f bin/* + @-rm -f $(BIN_PROGS) $(SBIN_PROGS) @echo Removing dummy targets @-rm -f bin/.*_* @echo Removing generated files @-rm -rf librpc/gen_* - - - - distclean: clean -rm -f bin/.dummy -rm -f include/config.h include/smb_build.h |