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...@apache.org on 2004/03/29 02:11:42 UTC

cvs commit: httpd-2.0/build special.mk

trawick     2004/03/28 16:11:42

  Modified:    build    special.mk
  Log:
  mod_so shows up in BUILTIN_LIBS differently now
  
  this fixes "make install" processing of DSOs
  
  Revision  Changes    Path
  1.27      +1 -1      httpd-2.0/build/special.mk
  
  Index: special.mk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/special.mk,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- special.mk	9 Feb 2004 20:40:47 -0000	1.26
  +++ special.mk	29 Mar 2004 00:11:42 -0000	1.27
  @@ -25,7 +25,7 @@
   install-modules:
   	@test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
   	@builtin='$(BUILTIN_LIBS)'; \
  -	has_mod_so=`echo $$builtin|sed 's/^.*libso.*$$/has_mod_so/'`; \
  +	has_mod_so=`echo $$builtin|sed 's/^.*libmod_so.*$$/has_mod_so/'`; \
   	if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \
   		list='$(shared)'; \
   		for i in $$list; do \