bjh         01/04/16 19:03:09

  Modified:    build    rules.mk.in
  Log:
  Fix make depend in APR. mkdep.sh wasn't getting passed any include paths.
  Not sure when/how this got broken.....
  
  Revision  Changes    Path
  1.7       +2 -2      apr/build/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/apr/build/rules.mk.in,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- rules.mk.in       2001/04/06 18:57:17     1.6
  +++ rules.mk.in       2001/04/17 02:03:09     1.7
  @@ -143,8 +143,8 @@
   
   local-depend:
        @if test -n "`ls *.c 2> /dev/null`"; then \
  -         echo $(MKDEP) $(CFLAGS) $(CPPFLAGS) *.c ; \
  -         $(MKDEP) $(CFLAGS) $(CPPFLAGS) *.c ; \
  +         echo $(MKDEP) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) *.c ; \
  +         $(MKDEP) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) *.c ; \
        fi
   
   # to be filled in by the actual Makefile
  
  
  

Reply via email to