Commit 8f3627d8 authored by Peter Eisentraut's avatar Peter Eisentraut

Add explicit '-print' to 'find' commands.

(partially) from Ian Lance Taylor
parent a457d335
...@@ -29,7 +29,7 @@ for item in `find "$sourcetree" -type d \( -name CVS -prune -o -print \)`; do ...@@ -29,7 +29,7 @@ for item in `find "$sourcetree" -type d \( -name CVS -prune -o -print \)`; do
fi fi
done 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\(.*\)"` subdir=`expr "$item" : "$sourcetree\(.*\)"`
if test ! -f "${item}.in"; then if test ! -f "${item}.in"; then
ln -fs "$item" "$buildtree/$subdir" || exit 1 ln -fs "$item" "$buildtree/$subdir" || exit 1
......
# $Header: /cvsroot/pgsql/src/backend/po/Attic/Makefile,v 1.1 2001/06/02 18:25:17 petere Exp $ # $Header: /cvsroot/pgsql/src/backend/po/Attic/Makefile,v 1.2 2001/09/10 22:25:48 petere Exp $
subdir = src/backend/po subdir = src/backend/po
top_builddir = ../../.. top_builddir = ../../..
...@@ -6,7 +6,7 @@ include $(top_builddir)/src/Makefile.global ...@@ -6,7 +6,7 @@ include $(top_builddir)/src/Makefile.global
gettext-files: gettext-files:
find $(srcdir)/.. -name '*.c' >$@ find $(srcdir)/.. -name '*.c' -print >$@
maintainer-clean: maintainer-clean:
rm -f gettext-files rm -f gettext-files
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