cvsuser     04/05/31 13:38:56

  Modified:    src      string.c
  Log:
  Rename $ENV{ICU_DATA_DIR} to $ENV{PARROT_ICU_DATA_DIR}
  
  Revision  Changes    Path
  1.204     +4 -4      parrot/src/string.c
  
  Index: string.c
  ===================================================================
  RCS file: /cvs/public/parrot/src/string.c,v
  retrieving revision 1.203
  retrieving revision 1.204
  diff -u -w -r1.203 -r1.204
  --- string.c  31 May 2004 19:26:22 -0000      1.203
  +++ string.c  31 May 2004 20:38:56 -0000      1.204
  @@ -1,6 +1,6 @@
   /*
   Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
  -$Id: string.c,v 1.203 2004/05/31 19:26:22 sfink Exp $
  +$Id: string.c,v 1.204 2004/05/31 20:38:56 sfink Exp $
   
   =head1 NAME
   
  @@ -247,9 +247,9 @@
       int free_data_dir = 0;
   
       /* DEFAULT_ICU_DATA_DIR is configured at build time, or it may be
  -       set through the $ICU_DATA_DIR environment variable. Need a way
  -       to specify this via the command line as well. */
  -    data_dir = Parrot_getenv("ICU_DATA_DIR", &free_data_dir);
  +       set through the $PARROT_ICU_DATA_DIR environment variable. Need
  +       a way to specify this via the command line as well. */
  +    data_dir = Parrot_getenv("PARROT_ICU_DATA_DIR", &free_data_dir);
       if (data_dir == NULL)
           data_dir = DEFAULT_ICU_DATA_DIR;
       string_set_data_directory(data_dir);
  
  
  

Reply via email to