rse         99/01/02 05:19:42

  Modified:    src      CHANGES
               .        configure
  Log:
  Instead of fixing a bug in the generation procedure for config.status (a
  backslash was missing) we remove the bug together with it's complete context
  because the special cases of the past can now no longer occur because of the
  recent magic for the --with-layout default.
  
  PR: 3590
  
  Revision  Changes    Path
  1.1192    +6 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1191
  retrieving revision 1.1192
  diff -u -r1.1191 -r1.1192
  --- CHANGES   1999/01/02 12:45:10     1.1191
  +++ CHANGES   1999/01/02 13:19:38     1.1192
  @@ -1,4 +1,10 @@
   Changes with Apache 1.3.4
  +
  +  *) Instead of fixing a bug in the generation procedure for config.status (a
  +     backslash was missing) we remove the bug together with it's complete
  +     context because the special cases of the past can now no longer occur
  +     because of the recent magic for the --with-layout default.
  +     [Ralf S. Engelschall] PR#3590
    
     *) Make top-level Makefile aware of a parallel build procedures (make -j) 
by
        making sure the src/support/ tools are _forced_ to be build last (they
  
  
  
  1.67      +8 -12     apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- configure 1999/01/01 19:04:32     1.66
  +++ configure 1999/01/02 13:19:41     1.67
  @@ -867,18 +867,14 @@
               -e 's:$:" \\:' >>$configstatus
       fi
   done
  -if [ $# -eq 0 ]; then
  -    echo "./configure" >>$configstatus
  -else
  -    echo $SEO "./configure \\" >>$configstatus
  -    for arg
  -    do
  -        echo "$arg" |\
  -        sed -e 's:\(["$\\]\):\\\1:g' \
  -            -e 's:^:":' \
  -            -e 's:$:" \\:' >>$configstatus
  -    done
  -fi
  +echo $SEO "./configure \\" >>$configstatus
  +for arg
  +do
  +    echo "$arg" |\
  +    sed -e 's:\(["$\\]\):\\\1:g' \
  +        -e 's:^:":' \
  +        -e 's:$:" \\:' >>$configstatus
  +done
   echo '"$@"' >>$configstatus
   echo '' >>$configstatus
   chmod a+x $configstatus
  
  
  

Reply via email to