Branch: Tag:

1998-08-02

1998-08-02 19:25:00 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed bug in cvsclean target.

Rev: src/Makefile.in:1.111

1:   # - # $Id: Makefile.in,v 1.110 1998/08/02 16:47:03 grubba Exp $ + # $Id: Makefile.in,v 1.111 1998/08/02 19:25:00 grubba Exp $   #      # This line is needed on some machines.
314:    -name 'config.cache' ')' -exec rm -f \{\} \;      cvsclean: distclean -  ( cd $(SRCDIR); \ -  for d in `find . -type d -print`; do \ -  if test -f "$$d/.cvsignore" ; then \ -  (cd $$d && rm -f `cat .cvsignore`); \ +  ( for d in `cd $(SRCDIR); find . -type d -print`; do \ +  if test -f "$(SRCDIR)/$$d/.cvsignore" ; then \ +  (cd "$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \ +  (cd "$(SRCDIR)/$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \    else :; fi; \    done)