Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4426600

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

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.4.0
    • 1.4.0
    • 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

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

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: