You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/05/16 02:44:48 UTC

cvs commit: apache-2.0/src/support Makefile.in

trawick     00/05/15 17:44:48

  Modified:    src/support Makefile.in
  Log:
  reorder libapr.a and libap.la in terms of dependencies (i.e.,
  libap needs libapr, so put libapr last) for OS/390
  
  Revision  Changes    Path
  1.3       +2 -2      apache-2.0/src/support/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/support/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in	2000/04/30 00:06:07	1.2
  +++ Makefile.in	2000/05/16 00:44:47	1.3
  @@ -3,8 +3,8 @@
   targets  = $(PROGRAMS)
   
   PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
  -PROGRAM_DEPENDENCIES = ../lib/apr/$(LIBPRE)apr.a \
  -	../ap/libap.la
  +PROGRAM_DEPENDENCIES = ../ap/libap.la \
  +	../lib/apr/$(LIBPRE)apr.a
   
   include $(top_srcdir)/build/rules.mk