Den 2010-09-21 09:37 skrev Peter Rosin:
> +      lt_save_ifs=$IFS
> +      # Doesn't work to have IFS=; so select some other char that is
> +      # invalid in w32 file names.
> +      IFS=?
> +      for lt_path in `echo "$LIB" | tr ';' '?'`
> +      do

Doh, of course it didn't work with IFS=;
It works much better with IFS=';' so I now have

+      lt_save_ifs=$IFS
+      IFS=';'
+      for lt_path in $LIB
+      do

instead.  Works as a charm.

Cheers,
Peter

Reply via email to