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/30 15:39:15 UTC

cvs commit: httpd-2.0/build config-stubs

trawick     00/12/30 06:39:15

  Modified:    build    config-stubs
  Log:
  Get rid of the "-g" on sort.
  
  With GNU sort 2.0 (which ships with Mandrake 7.2), the -g makes
  a difference in the sinclude order (which I assume is an intended
  difference which I have just broken).
  
  With GNU sort 1.2 (which ships with RedHat 6.0), the -g is accepted
  but is not documented and makes no difference in the result.  Thus
  systems with GNU sort 1.2 were broken before and are still broken
  with respect to the order of the sinclude statements.
  
  With OS/390, Tru64, Solaris, and now I think AIX, -g was not accepted
  at all by sort so the output of this was broken and Apache would not
  build.
  
  Revision  Changes    Path
  1.3       +1 -1      httpd-2.0/build/config-stubs
  
  Index: config-stubs
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/config-stubs,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- config-stubs	2000/12/26 22:48:49	1.2
  +++ config-stubs	2000/12/30 14:39:15	1.3
  @@ -2,7 +2,7 @@
   
   for configfiles in `find . -name "config*.m4" | \
            sed 's#\(.*\)\/config\(.*\)\.m4#\2config.m4\1#' | \
  -         sort -g | \
  +         sort | \
            sed 's#\(.*\)config.m4\(.*\)#\2/config\1.m4#g'`; do
       if [ -r $configfiles ]; then
           echo "sinclude($configfiles)"