poco/build/script/makeldpath
Guenter Obiltschnig 7781215f61 sources for 1.3
2006-11-17 16:40:16 +00:00

28 lines
450 B
Bash
Executable File

#! /bin/sh
#
# makeldpath
#
# $Id: //poco/1.3/build/script/makeldpath#1 $
#
# Create a LD_LIBRARY_PATH for all project libraries.
#
if [ "$POCO_BASE" == "" ] ; then
echo $0": POCO_BASE is not set."
exit 1
fi
projectList=`cat ${POCO_BASE}/components`
OSNAME=`uname`
OSARCH=`uname -m | tr " /" "_-"`
for proj in $projectList ;
do
path=${POCO_BASE}/${proj}/lib/${OSNAME}/${OSARCH}
echo $path
if [ -d $path ] ; then
echo -n ":"$path
fi
done