Bugs item #1046801, was opened at 2004-10-14 00:01
Message generated for change (Comment added) made by donginn
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=109368&aid=1046801&group_id=9368
Category: None
Group: 3.0.1
>Status: Closed
Resolution: None
Priority: 5
Submitted By: Bernard Li (bernardli)
Assigned to: Nobody/Anonymous (nobody)
Summary: Warning in start_over script
Initial Comment:
Use of uninitialized value in concatenation (.) or string
at ./start_over line 108.
Happens on Fedora Core 2 installation
----------------------------------------------------------------------
>Comment By: DongInn Kim (donginn)
Date: 2004-10-19 14:30
Message:
Logged In: YES
user_id=1097490
The warning message is pointing the line 108 of start_over.
The line 108 is ...
use lib "$oscar_home/lib";
As you see, perl script starts to read the "use" statement
line first wherever it is.
But before $oscar_home is defined, this call is compiled
and compiler warns
that this variable might be used in an uninitialized state.
At this point of using start_over, oscar must be already
installed and $ENV{OSCAR_HOME} is defined.
So, it will be no problem to use $ENV{OSCAR_HOME} instead of
$oscar_home.
use lib "$oscar_home/lib";
---> use lib "$ENV{OSCAR_HOME}/lib";
----------------------------------------------------------------------
Comment By: DongInn Kim (donginn)
Date: 2004-10-19 14:30
Message:
Logged In: YES
user_id=1097490
This issue has been fixed in the current development cvs tree
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=109368&aid=1046801&group_id=9368
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
Oscar-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/oscar-devel