Minor changes for solaris.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2678 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ovidiu Predescu 1997-12-23 02:10:38 +00:00
parent dbe91e6b38
commit 1a1063a897
2 changed files with 5 additions and 10 deletions

View file

@ -1,3 +1,8 @@
Wed Dec 17 10:40:02 1997 Ovidiu Predescu <ovidiu@net-community.com>
* ld_lib_path.sh: Don't treat Solaris' LD_LIBRARY_PATH different (patch
from Matthias Klose <Matthias.Klose@cs.tu-berlin.de>).
Fri Nov 28 10:47:11 1997 Scott Christley <scottc@net-community.com>
* common.make (GNUSTEP_INSTALLATION_DIR): If the default

View file

@ -50,16 +50,6 @@ case "$host_os" in
export DYLD_LIBRARY_PATH
;;
*solaris*)
LD_LIBRARY_PATH="$GNUSTEP_USER_ROOT/$last_path_part;$GNUSTEP_LOCAL_ROOT/$last_path_part;$GNUSTEP_SYSTEM_ROOT/$last_path_part;$LD_LIBRARY_PATH"
if [ -n "$additional_library_paths" ]; then
for dir in $additional_library_paths; do
additional="${additional}${dir};"
done
fi
LD_LIBRARY_PATH="${additional}${LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH;;
*)
LD_LIBRARY_PATH="$GNUSTEP_USER_ROOT/$last_path_part:$GNUSTEP_LOCAL_ROOT/$last_path_part:$GNUSTEP_SYSTEM_ROOT/$last_path_part:$LD_LIBRARY_PATH"
if [ -n "$additional_library_paths" ]; then