Fixed setting up PATH in GNUstep.csh

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24823 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2007-03-08 14:17:58 +00:00
parent 4ac61f803d
commit 6596cb8a05
2 changed files with 10 additions and 5 deletions

View file

@ -1,8 +1,13 @@
2007-03-09 Sergii Stoian <stoyan255@gmail.com>
2007-03-08 Nicola Pero <nicola.pero@meta-innovation.com>
* FilesystemLayouts/next: Change GNUSTEP_*_LIBARARIES to
/GNULibrary instead of /GNUDeveloper. Change GNUSTEP_USER_CONFIG_FILE
to Library/Preferences/GNUstep.conf.
* GNUstep.csh.in: Fixed typo when setting up PATH (Reported by
Wolfgang Lux <wolfgang.lux@gmail.com>).
2007-03-08 Sergii Stoian <stoyan255@gmail.com>
* FilesystemLayouts/next: Change GNUSTEP_*_LIBRARIES to
/GNULibrary instead of /GNUDeveloper. Change
GNUSTEP_USER_CONFIG_FILE to Library/Preferences/GNUstep.conf.
2007-03-08 Nicola Pero <nicola.pero@meta-innovation.com>

View file

@ -197,7 +197,7 @@ foreach dir ( "${GNUSTEP_SYSTEM_ADMIN_TOOLS}" "${GNUSTEP_NETWORK_ADMIN_TOOLS}" "
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}:"