trawick     00/12/12 07:12:12

  Modified:    .        Makefile.in
  Log:
  Get rid of "-maxdepth 0" on the find invocation.  This breaks on Tru64
  and FreeBSD, and I can't tell that it helps anyway.
  
  Revision  Changes    Path
  1.33      +1 -1      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- Makefile.in       2000/12/12 12:03:41     1.32
  +++ Makefile.in       2000/12/12 15:12:10     1.33
  @@ -107,7 +107,7 @@
   
   delete-exports:
        @if test -f $(TARGET_EXPORTS); then \
  -         headers="`find include/*.h -maxdepth 0 -newer $(TARGET_EXPORTS)`" ; 
\
  +         headers="`find include/*.h -newer $(TARGET_EXPORTS)`" ; \
            if test -n "$$headers"; then \
                echo Found newer headers. Will rebuild $(TARGET_EXPORTS). ; \
                echo $(RM) -f $(TARGET_EXPORTS) ; \
  
  
  

Reply via email to