You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2001/07/21 18:40:31 UTC

cvs commit: apr/build rules.mk.in

jerenkrantz    01/07/21 09:40:31

  Modified:    build    rules.mk.in
  Log:
  Make sure that mkdep.sh knows which compiler we are supposed to use.
  Otherwise, it defaults to cc.
  
  Revision  Changes    Path
  1.18      +1 -1      apr/build/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/apr/build/rules.mk.in,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- rules.mk.in	2001/05/18 02:35:52	1.17
  +++ rules.mk.in	2001/07/21 16:40:31	1.18
  @@ -195,7 +195,7 @@
   local-depend: x-local-depend
   	@if test -n "`ls *.c 2> /dev/null`"; then \
   	    echo $(MKDEP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) *.c ; \
  -	    $(MKDEP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) *.c ; \
  +	    CC=${CC} $(MKDEP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) *.c ; \
   	fi
   
   # to be filled in by the actual Makefile