Commit 2bbf3411 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix handling of pre-existing LD_LIBRARY_PATH, from Keith Parks

parent a7466534
#!/bin/sh
#
# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.22 2000/07/09 13:14:19 petere Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.23 2000/07/09 13:19:24 petere Exp $
# ----------
# Check call syntax
......@@ -43,7 +43,7 @@ export PGPORT
# otherwise feel free to cover your platform here as well.
if [ "$LD_LIBRARY_PATH" ]; then
old_LD_LIBRARY_PATH="$LD_LIBRARY_PATH"
LD_LIBRARY_PATH="$LIBDIR:$LD_LIBARY_PATH"
LD_LIBRARY_PATH="$LIBDIR:$old_LD_LIBARY_PATH"
else
LD_LIBRARY_PATH="$LIBDIR"
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment