mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
Bugs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3673 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8f154cba8d
commit
32c8cd71a8
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Feb 8 08:24:39 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
|
||||
|
||||
* ld_lib_path.csh: Rename additional_library_paths to
|
||||
additional_lib_paths. It was too long for solaris2.
|
||||
|
||||
1999-02-01 Adam Fedor <fedor@penitente>
|
||||
|
||||
* target.make: Add openbsd target (Patch from Michael Hanni
|
||||
|
|
|
@ -42,8 +42,8 @@ switch ( "${host_os}" )
|
|||
else
|
||||
setenv DYLD_LIBRARY_PATH "${GNUSTEP_USER_ROOT}/${last_path_part}:${GNUSTEP_LOCAL_ROOT}/${last_path_part}:${GNUSTEP_SYSTEM_ROOT}/${last_path_part}:${DYLD_LIBRARY_PATH}"
|
||||
endif
|
||||
if ( $?additional_library_paths == 1) then
|
||||
foreach dir (${additional_library_paths})
|
||||
if ( $?additional_lib_paths == 1) then
|
||||
foreach dir (${additional_lib_paths})
|
||||
set additional="${additional}${dir}:"
|
||||
end
|
||||
endif
|
||||
|
@ -59,8 +59,8 @@ switch ( "${host_os}" )
|
|||
else
|
||||
setenv LD_LIBRARY_PATH "${GNUSTEP_USER_ROOT}/${last_path_part}:${GNUSTEP_LOCAL_ROOT}/${last_path_part}:${GNUSTEP_SYSTEM_ROOT}/${last_path_part}:${LD_LIBRARY_PATH}"
|
||||
endif
|
||||
if ( $?additional_library_paths == 1) then
|
||||
foreach dir (${additional_library_paths})
|
||||
if ( $?additional_lib_paths == 1) then
|
||||
foreach dir (${additional_lib_paths})
|
||||
set additional="${additional}${dir}:"
|
||||
end
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue