You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@hyperreal.org on 1998/08/12 19:04:50 UTC

cvs commit: apache-1.3/src Configure

jim         98/08/12 10:04:49

  Modified:    src      Configure
  Log:
  Work around broken sed/awk on AUX
  
  Revision  Changes    Path
  1.284     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.283
  retrieving revision 1.284
  diff -u -r1.283 -r1.284
  --- Configure	1998/08/03 19:59:56	1.283
  +++ Configure	1998/08/12 17:04:47	1.284
  @@ -1476,7 +1476,7 @@
   ####################################################################
   ## Now create modules.c
   ##
  -sed 's/_module//' $tmpfile | awk >modules.c '
  +cat $tmpfile | sed 's/_module//' | awk >modules.c '
       BEGIN {
   	modules[n++] = "core"
   	pmodules[pn++] = "core"