discuss-gnustep
[Top][All Lists]
Advanced

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

Re: Customizable filesystem support for GNUstep


From: Nicola Pero
Subject: Re: Customizable filesystem support for GNUstep
Date: Thu, 8 Mar 2007 15:13:49 +0100 (CET)

Thanks ... clever.  I fixed it on trunk. :-)

Thanks for your help



-----Original Message-----
From: Wolfgang Lux <wolfgang.lux@gmail.com>
Sent: Sat, March 3, 2007 10:17 am
To: nicola.pero@meta-innovation.com
Cc: Discuss-gnustep <discuss-gnustep@gnu.org>
Subject: Re: Customizable filesystem support for GNUstep

I wrote:

> Nicola Pero wrote:
>
>> Anyway - let me know if it now works better! ;-)
>
> It does. Thanks

I shall correct myself -- it almost works. GNUstep.csh doesn't
set up $path correctly. In particular, the various Tools
directories are not included in the path due to a quotation
error. The patch below fixes this.

Regards
Wolfgang

Index: GNUstep.csh.in
===================================================================
--- GNUstep.csh.in      (Revision 24757)
+++ GNUstep.csh.in      (Arbeitskopie)
@@ -197,7 +197,7 @@
end
set temp_path = ""
-foreach dir ( `/bin/sh -c 'IFS=:; for i in $ 
{GNUSTEP_TOOLS_PATHLIST}; do echo $i; done'` )
+foreach dir ( `/bin/sh -c 'IFS=:; for i in '"$ 
{GNUSTEP_TOOLS_PATHLIST}"'; do echo $i; done'` )
    set temp_path="${temp_path}${dir}:"
    if ( "${GNUSTEP_IS_FLATTENED}" == "no" ) then
      set temp_path="${temp_path}${dir}/${GNUSTEP_HOST_CPU}/$ 
{GNUSTEP_HOST_OS}/${LIBRARY_COMBO}:"






reply via email to

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