On Tue, Apr 05, 2011 at 05:16:29PM -0700, Bernard Li wrote:
> Hi Thomas:
> 
> On Tue, Apr 5, 2011 at 12:41 PM, Thomas Zeiser
> 
> > attached are three small patches to improve compatibility with
> > OpenSuSE 11.3:
> > - allow parted version numbers "a.b" in addition to "a.b.c"
> > - avoid non-initialized variable in si_getimage
> > - detect date format of OpenSuSE 11.3 kernels for UYOK
> 
> Thanks for your patches.
> 
> Regarding the change to si_getimage, perhaps this is a better patch?

I'm happy with your version of patch, too, as it makes the Perl
waring/error disappear.

thomas

> 
> Index: sbin/si_getimage
> ===================================================================
> --- sbin/si_getimage    (revision 4535)
> +++ sbin/si_getimage    (working copy)
> @@ -136,7 +136,9 @@
>      "quiet"             => \$quiet
>  ) || die "$help_info";
> 
> -$update_script = lc $update_script;
> +if ($update_script) {
> +  $update_script = lc $update_script;
> +}
> 
>  #if requested, print help information
>  if ($help) {
> @@ -196,8 +198,7 @@
> 
>  # be sure $update_script was passed a proper option
>  unless(
> -       ($update_script eq ""   )
> -    or ($update_script eq "yes")
> +       ($update_script eq "yes")
>      or ($update_script eq "no" )
>  ) { die "\n$program_name: --update-script must be yes or 
> no.\n$get_help\n\n"; }
> 
> I do not like setting $update_script to "no" since that is not the
> default (it is perfectly fine not to define $update_script).
> 
> I also disallowed $update_script to be "" since that doesn't make
> sense -- Brian?
> 
> Cheers,
> 
> Bernard

-- 
Dr.-Ing. Thomas Zeiser, HPC Services
Friedrich-Alexander-Universitaet Erlangen-Nuernberg
Regionales Rechenzentrum Erlangen (RRZE)
Martensstrasse 1, 91058 Erlangen, Germany
Tel.: +49 9131 85-28737, Fax: +49 9131 302941
thomas.zei...@rrze.uni-erlangen.de
http://www.rrze.uni-erlangen.de/hpc/

------------------------------------------------------------------------------
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
_______________________________________________
sisuite-users mailing list
sisuite-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sisuite-users

Reply via email to