We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 520c41b commit 9173d75Copy full SHA for 9173d75
GNUmakefile.in
@@ -1,7 +1,7 @@
1
#
2
# PostgreSQL top level makefile
3
4
-# $PostgreSQL: pgsql/GNUmakefile.in,v 1.49 2008/12/04 07:02:56 petere Exp $
+# $PostgreSQL: pgsql/GNUmakefile.in,v 1.50 2009/01/15 01:53:49 momjian Exp $
5
6
7
subdir =
@@ -117,7 +117,7 @@ postgresql-test-$(VERSION).tar: distdir
117
118
distdir:
119
rm -rf $(distdir)* $(dummy)
120
- for x in `cd $(top_srcdir) && find . -name CVS -prune -o -print`; do \
+ for x in `cd $(top_srcdir) && find . \( -name CVS -prune \) -o \( -name .git -prune \) -o -print`; do \
121
file=`expr X$$x : 'X\./\(.*\)'`; \
122
if test -d "$(top_srcdir)/$$file" ; then \
123
mkdir "$(distdir)/$$file" && chmod 777 "$(distdir)/$$file"; \
0 commit comments