libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] msvc: eliminate spaces in the library search path.


From: Peter Rosin
Subject: Re: [PATCH] msvc: eliminate spaces in the library search path.
Date: Tue, 21 Sep 2010 12:29:36 +0200
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2

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

[Prev in Thread] Current Thread [Next in Thread]