trawick     00/12/12 07:12:40

  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.8       +1 -1      apr-util/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/Makefile.in,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Makefile.in       2000/12/12 11:13:00     1.7
  +++ Makefile.in       2000/12/12 15:12:35     1.8
  @@ -38,7 +38,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