1
0
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:
Peter Eisentraut
2001-09-10 22:25:48 +00:00
parent a457d33516
commit 8f3627d89b
2 changed files with 3 additions and 3 deletions

View File

@ -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