From ed21c4a151729af286e9bef8ec3cb531119e9420 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Sat, 29 Jan 2011 07:47:16 -0600 Subject: [PATCH 1/2] Filter our git .patch files for dist-src and dist-win32 targets. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c0a03df..15cd069 100644 --- a/Makefile +++ b/Makefile @@ -208,6 +208,7 @@ dist-win32: cp -a bin/visualinfo.exe $(TARDIR)/bin find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r + find $(TARDIR) -name .patch | xargs $(RM) -r unix2dos $(TARDIR)/include/GL/*.h unix2dos $(TARDIR)/doc/*.txt unix2dos $(TARDIR)/doc/*.html @@ -235,6 +236,7 @@ dist-src: find $(TARDIR) -name '*~' | xargs $(RM) -r find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r + find $(TARDIR) -name .patch | xargs $(RM) -r unix2dos $(TARDIR)/config/* unix2dos $(TARDIR)/auto/core/* unix2dos $(TARDIR)/auto/extensions/* From 10ad0592dfdd2d3f2416c23277aa1de647229275 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Mon, 31 Jan 2011 08:10:28 -0600 Subject: [PATCH 2/2] Remove git .patch files for tardist, dist-win32 and dist-src targets" --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 15cd069..2499b8d 100644 --- a/Makefile +++ b/Makefile @@ -187,6 +187,7 @@ tardist: cp -a . $(TARDIR) find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r + find $(TARDIR) -name "*.patch" | xargs $(RM) -r $(MAKE) -C $(TARDIR) distclean $(MAKE) -C $(TARDIR) $(MAKE) -C $(TARDIR) distclean @@ -208,7 +209,7 @@ dist-win32: cp -a bin/visualinfo.exe $(TARDIR)/bin find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r - find $(TARDIR) -name .patch | xargs $(RM) -r + find $(TARDIR) -name "*.patch" | xargs $(RM) -r unix2dos $(TARDIR)/include/GL/*.h unix2dos $(TARDIR)/doc/*.txt unix2dos $(TARDIR)/doc/*.html @@ -236,7 +237,7 @@ dist-src: find $(TARDIR) -name '*~' | xargs $(RM) -r find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r - find $(TARDIR) -name .patch | xargs $(RM) -r + find $(TARDIR) -name "*.patch" | xargs $(RM) -r unix2dos $(TARDIR)/config/* unix2dos $(TARDIR)/auto/core/* unix2dos $(TARDIR)/auto/extensions/*