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/12/12 13:51:20 UTC

cvs commit: httpd-2.0/build special.mk

trawick     00/12/12 04:51:19

  Modified:    build    special.mk
  Log:
  Get "make install" to install DSOs again.
  
  static has just the list of static modules for this directory, so
  in all but one of our module directories mod_so won't be in this
  list, preventing us from thinking this is a DSO build.
  
  BUILTIN_LIBS is always a valid check since it is the entire list
  of modules.
  
  Revision  Changes    Path
  1.10      +2 -2      httpd-2.0/build/special.mk
  
  Index: special.mk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/special.mk,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- special.mk	2000/11/28 21:37:20	1.9
  +++ special.mk	2000/12/12 12:51:19	1.10
  @@ -62,8 +62,8 @@
   
   install-modules:
   	@shared='$(shared)'; \
  -	static='$(static)'; \
  -	has_mod_so=`echo $$static|sed 's/^.*mod_so.*$$/has_mod_so/'`; \
  +	builtin='$(BUILTIN_LIBS)'; \
  +	has_mod_so=`echo $$builtin|sed 's/^.*mod_so.*$$/has_mod_so/'`; \
   	if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \
   		$(MKINSTALLDIRS) $(libexecdir); \
   		for i in $$shared; do \