mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add configure check for -lunix, for QNX.
Recode test for equality of source and build directory using 'test -ef', because even using pwd you might not get equal strings. Thanks, QNX.
This commit is contained in:
@ -15,20 +15,25 @@ elif test x"$1" = x"--help"; then
|
||||
echo "$help"
|
||||
exit 0
|
||||
fi
|
||||
sourcetree=$1
|
||||
|
||||
buildtree=${2:-'.'}
|
||||
unset CDPATH
|
||||
|
||||
sourcetree=`cd $1 && pwd`
|
||||
|
||||
buildtree=`cd ${2:-'.'} && pwd`
|
||||
|
||||
for item in `find "$sourcetree" -type d \( -name CVS -prune -o -print \)`; do
|
||||
subdir=`expr "$item" : "$sourcetree\(.*\)"`
|
||||
if test ! -d "$buildtree/$subdir"; then
|
||||
mkdir -p "$buildtree/$subdir" || exit
|
||||
mkdir -p "$buildtree/$subdir" || exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
for item in `find "$sourcetree" -name Makefile -o -name GNUmakefile`; do
|
||||
subdir=`expr "$item" : "$sourcetree\(.*\)"`
|
||||
if test ! -f "${item}.in"; then
|
||||
ln -fs "$item" "$buildtree/$subdir" || exit
|
||||
ln -fs "$item" "$buildtree/$subdir" || exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
|
Reference in New Issue
Block a user