rbb         01/01/19 12:44:46

  Modified:    .        CHANGES
               helpers  rules.mk.in
  Log:
  Fix make depend.
  
  Revision  Changes    Path
  1.43      +2 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- CHANGES   2001/01/19 03:13:00     1.42
  +++ CHANGES   2001/01/19 20:44:45     1.43
  @@ -1,5 +1,7 @@
   Changes with APR b1
   
  +  *) Fix make depend.  [Ryan Bloom]
  +
     *) All dso implementations now register a cleanup to unload the DSO
        when it is loaded.  If the pool is removed, we really do need to
        remove the DSO.  In the past, different platforms behaved differently
  
  
  
  1.2       +3 -1      apr/helpers/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/apr/helpers/rules.mk.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- rules.mk.in       2001/01/09 11:05:50     1.1
  +++ rules.mk.in       2001/01/19 20:44:46     1.2
  @@ -118,7 +118,9 @@
            made_local=n/a; \
        fi; \
        if test -z "$$made_local"; then \
  -         $(MAKE) "local-$$otarget" || exit 1; \
  +         if test "$$otarget" != "depend" || test `pwd` != "$(top_builddir)"; 
then \
  +             $(MAKE) "local-$$otarget" || exit 1; \
  +         fi; \
        fi
   
   local-clean: x-local-clean
  
  
  

Reply via email to