On Wed, 2004-09-15 at 15:28 +0200, Bastian Blank wrote: > On Wed, Sep 15, 2004 at 02:42:22PM +0200, Bastian Blank wrote: > > The Makefiles in the fence and gfs directory doesn't clean the bin > > directories. The attached patch fixes this. > > I attached the wrong patch by accident. Hmm, neither do cman or ccs Actually GNBD seems to be the only one which currently does... Patch for the four of them. -- Lon
Index: ccs/Makefile =================================================================== RCS file: /cvs/cluster/cluster/ccs/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- ccs/Makefile 26 Jul 2004 16:43:35 -0000 1.2 +++ ccs/Makefile 15 Sep 2004 15:13:04 -0000 @@ -21,6 +21,7 @@ cd ccs_test && ${MAKE} copytobin clean: + cd bin && ${MAKE} clean cd daemon && ${MAKE} clean cd lib && ${MAKE} clean cd ccs_test && ${MAKE} clean Index: cman/Makefile =================================================================== RCS file: /cvs/cluster/cluster/cman/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- cman/Makefile 13 Aug 2004 06:38:49 -0000 1.2 +++ cman/Makefile 15 Sep 2004 15:13:04 -0000 @@ -18,6 +18,7 @@ cd cman_tool && ${MAKE} copytobin clean: + cd bin && ${MAKE} clean cd cman_tool && ${MAKE} clean distclean: clean Index: fence/Makefile =================================================================== RCS file: /cvs/cluster/cluster/fence/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- fence/Makefile 24 Jun 2004 08:53:10 -0000 1.1 +++ fence/Makefile 15 Sep 2004 15:13:04 -0000 @@ -19,6 +19,7 @@ cd fenced && ${MAKE} copytobin clean: + cd bin && ${MAKE} clean cd agents && ${MAKE} clean cd fence_node && ${MAKE} clean cd fence_tool && ${MAKE} clean Index: gfs/Makefile =================================================================== RCS file: /cvs/cluster/cluster/gfs/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- gfs/Makefile 24 Jun 2004 08:53:20 -0000 1.1 +++ gfs/Makefile 15 Sep 2004 15:13:04 -0000 @@ -30,6 +30,7 @@ cd gfs_tool && ${MAKE} copytobin clean: + cd bin && ${MAKE} clean cd gfs_edit && ${MAKE} clean cd gfs_fsck && ${MAKE} clean cd gfs_grow && ${MAKE} clean