mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add explicit '-print' to 'find' commands.
(partially) from Ian Lance Taylor
This commit is contained in:
@ -29,7 +29,7 @@ for item in `find "$sourcetree" -type d \( -name CVS -prune -o -print \)`; do
|
||||
fi
|
||||
done
|
||||
|
||||
for item in `find "$sourcetree" -name Makefile -o -name GNUmakefile`; do
|
||||
for item in `find "$sourcetree" -name Makefile -print -o -name GNUmakefile -print`; do
|
||||
subdir=`expr "$item" : "$sourcetree\(.*\)"`
|
||||
if test ! -f "${item}.in"; then
|
||||
ln -fs "$item" "$buildtree/$subdir" || exit 1
|
||||
|
Reference in New Issue
Block a user