You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@apache.org> on 1998/07/25 13:25:06 UTC

cvs commit: apache-1.3/src/helpers mkdir.sh

rse         98/07/25 04:25:05

  Modified:    src      CHANGES
               src/helpers mkdir.sh
  Log:
  Use a more straight forward and thus less problematic (replace -n&p by -e)
  Sed command in src/helper/mkdir.sh script.
  
  Revision  Changes    Path
  1.983     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.982
  retrieving revision 1.983
  diff -u -r1.982 -r1.983
  --- CHANGES	1998/07/25 10:52:46	1.982
  +++ CHANGES	1998/07/25 11:25:02	1.983
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.2
   
  +  *) Use a more straight forward and thus less problematic Sed command in
  +     src/helper/mkdir.sh script.  [Ralf S. Engelschall]
  +
     *) Make sure the `configure' scripts doesn't fail when trying to guess the
        domainname of the machine and there are multiple `domainname' and
        `search' entries in /etc/resolv.conf.
  
  
  
  1.3       +1 -1      apache-1.3/src/helpers/mkdir.sh
  
  Index: mkdir.sh
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/helpers/mkdir.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mkdir.sh	1998/04/25 19:27:04	1.2
  +++ mkdir.sh	1998/07/25 11:25:04	1.3
  @@ -12,7 +12,7 @@
   errstatus=0
   for file in ${1+"$@"} ; do 
       set fnord `echo ":$file" |\
  -               sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
  +               sed -e 's/^:\//%/' -e 's/^://' -e 's/\// /g' -e 's/^%/\//'`
       shift
       pathcomp=
       for d in ${1+"$@"}; do