rse         98/07/28 10:26:46

  Modified:    src      CHANGES
               .        configure
  Log:
  One more portability fix for APACI shadow tree support: Swap order of awk and
  sed in top-level configure script to avoid sed fails on some platforms (for
  instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined output
  of Awk.
  
  PR: 2729
  
  Revision  Changes    Path
  1.992     +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.991
  retrieving revision 1.992
  diff -u -r1.991 -r1.992
  --- CHANGES   1998/07/28 17:07:07     1.991
  +++ CHANGES   1998/07/28 17:26:43     1.992
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.2
   
  +  *) One more portability fix for APACI shadow tree support: Swap order of 
awk
  +     and sed in top-level configure script to avoid sed fails on some
  +     platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
  +     non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
  +
     *) PORT: NEC EWS4800 support.
        [MATSUURA Takanori <[EMAIL PROTECTED]>]
   
  
  
  
  1.42      +1 -1      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- configure 1998/07/27 14:39:22     1.41
  +++ configure 1998/07/28 17:26:45     1.42
  @@ -332,7 +332,7 @@
               ;;
           --shadow)
               #   determine GNU platform triple
  -            gnutriple=`$aux/GuessOS | $AWK '{ printf("%s",$1); }' | sed -e 
's:/:-:g'`
  +            gnutriple=`$aux/GuessOS | sed -e 's:/:-:g' | $AWK '{ 
printf("%s",$1); }'`
               #   create Makefile wrapper (the first time only)
               if [ ".`ls $top/src.* 2>/dev/null`" = . ]; then
                   if [ .$quiet = .no ]; then
  
  
  

Reply via email to