.classes.clean target of Rules.gmk does not delete $(TMPDIR)/.classes.*

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P2
    • 1.4.0
    • Affects Version/s: 1.4.0
    • Component/s: infrastructure
    • None
    • beta
    • generic
    • generic



      Name: dm26566 Date: 03/16/2001


      The following code exists in Rules.gmk::

      classes.clean:
          ifeq ($(DONT_CLOBBER_CLASSES),true)
      @$(TRUE)
          else
      $(RM) -r $(CLASSDESTDIR)/$(PKGDIR) .classes.*
          endif

      Note, however, that the files .classes.* are all in $(TMPDIR),
      so this code should read:

      classes.clean:
          ifeq ($(DONT_CLOBBER_CLASSES),true)
      @$(TRUE)
          else
      $(RM) -r $(CLASSDESTDIR)/$(PKGDIR) $(TMPDIR)/.classes.*
          endif

      ======================================================================

            Assignee:
            Dale Mcduffie (Inactive)
            Reporter:
            Dale Mcduffie (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: