mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
4ac61f803d
commit
6596cb8a05
2 changed files with 10 additions and 5 deletions
13
ChangeLog
13
ChangeLog
|
@ -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>
|
||||
|
||||
|
|
|
@ -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}:"
|
||||
|
|
Loading…
Reference in a new issue