Skip to content

Commit 2bbf341

Browse files
committed
Fix handling of pre-existing LD_LIBRARY_PATH, from Keith Parks
1 parent a746653 commit 2bbf341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/run_check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
#
3-
# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.22 2000/07/09 13:14:19 petere Exp $
3+
# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.23 2000/07/09 13:19:24 petere Exp $
44

55
# ----------
66
# Check call syntax
@@ -43,7 +43,7 @@ export PGPORT
4343
# otherwise feel free to cover your platform here as well.
4444
if [ "$LD_LIBRARY_PATH" ]; then
4545
old_LD_LIBRARY_PATH="$LD_LIBRARY_PATH"
46-
LD_LIBRARY_PATH="$LIBDIR:$LD_LIBARY_PATH"
46+
LD_LIBRARY_PATH="$LIBDIR:$old_LD_LIBARY_PATH"
4747
else
4848
LD_LIBRARY_PATH="$LIBDIR"
4949
fi

0 commit comments

Comments
 (0)