]> granicus.if.org Git - postgresql/commitdiff
Modify distdir rule to skip .git directory.
authorBruce Momjian <bruce@momjian.us>
Thu, 15 Jan 2009 01:53:49 +0000 (01:53 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 15 Jan 2009 01:53:49 +0000 (01:53 +0000)
GNUmakefile.in

index f5ef46adebb0440da5b32690358dd9cea2a92449..56a42ada0fab87f23cd1441fc2cfb90d45fb6e58 100644 (file)
@@ -1,7 +1,7 @@
 #
 # PostgreSQL top level makefile
 #
-# $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 $
 #
 
 subdir =
@@ -117,7 +117,7 @@ postgresql-test-$(VERSION).tar: distdir
 
 distdir:
        rm -rf $(distdir)* $(dummy)
-       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 \
          file=`expr X$$x : 'X\./\(.*\)'`; \
          if test -d "$(top_srcdir)/$$file" ; then \
            mkdir "$(distdir)/$$file" && chmod 777 "$(distdir)/$$file"; \