mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fix so we find things installed in the GNUstep structure.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@4490 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a6f86d7b5f
commit
9c57b38288
3 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,10 @@
|
|||
1999-06-24 Adam Fedor Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
1999-06-28 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* GNUstep.csh.in: Include Tools/host-cpu/host-os in path for any
|
||||
utilities that are installed without a startup script.
|
||||
* GNUstep.sh.in: ditto.
|
||||
|
||||
1999-06-24 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* common.make: include -Wall when building for debug
|
||||
|
||||
|
|
|
@ -66,6 +66,7 @@ endif
|
|||
set tp = ""
|
||||
foreach dir ( `/bin/sh -c 'IFS=:; for i in ${GNUSTEP_PATHPREFIX_LIST}; do echo $i; done'` )
|
||||
set tp=${tp}${dir}/Tools:
|
||||
set tp=${tp}${dir}/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}:
|
||||
end
|
||||
setenv PATH ${tp}${PATH}
|
||||
|
||||
|
|
|
@ -71,6 +71,7 @@ IFS=:
|
|||
temp_path=
|
||||
for dir in $GNUSTEP_PATHPREFIX_LIST; do
|
||||
temp_path=$temp_path$dir/Tools:
|
||||
temp_path=$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}:
|
||||
done
|
||||
PATH=$temp_path$PATH
|
||||
|
||||
|
|
Loading…
Reference in a new issue