dgaudet     98/03/19 12:02:05

  Modified:    src      CHANGES Configure
  Log:
  Make Configure die when a bad switch is given.
  
  Submitted by: Ben Hyde
  
  Revision  Changes    Path
  1.723     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.722
  retrieving revision 1.723
  diff -u -r1.722 -r1.723
  --- CHANGES   1998/03/19 10:05:40     1.722
  +++ CHANGES   1998/03/19 20:02:01     1.723
  @@ -1,4 +1,7 @@
   Changes with Apache 1.3b6
  +  
  +  *) Make Configure die when you give it an unknown command switch.
  +     [Ben Hyde]
   
     *) Add five new and fresh manpages for the support programs: dbmmanage.1,
        suexec.8, htdigest.1, rotatelogs.8 and logresolve.8.  Now all up-to-date
  
  
  
  1.215     +3 -2      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.214
  retrieving revision 1.215
  diff -u -r1.214 -r1.215
  --- Configure 1998/03/18 22:09:29     1.214
  +++ Configure 1998/03/19 20:02:03     1.215
  @@ -101,8 +101,9 @@
         exit 1
       fi
     else
  -    echo "Ignoring command line option '$1'"
  -    shift 1
  +    echo "ERROR: Bad command line option '$1'"
  +    echo "  Please read the file INSTALL."
  +    exit 1
     fi
   done
   if [ ! -r $file ]; then
  
  
  

Reply via email to