From b47a56bba13aece2cfb315ac7ea792620623f83b Mon Sep 17 00:00:00 2001 From: dim Date: Mon, 25 Feb 2008 17:26:09 +0000 Subject: [PATCH] FIX Makefile to ignore some parallel files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index be2608d..86aea74 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.15 2008-02-25 16:27:06 dim Exp $ +# $Id: Makefile,v 1.16 2008-02-25 17:26:09 dim Exp $ # # Makefile for debian packaging purpose, make install not intended to work. @@ -59,7 +59,7 @@ deb: mkdir -p $(DEBDIR)/pgloader-$(VERSION) mkdir -p $(EXPORT) cp -a . $(EXPORT) - for n in ".#*" "*~" "*.pyc" "build-stamp" "configure-stamp" "parallel.[^d]" ; do \ + for n in ".#*" "*~" "*.pyc" "build-stamp" "configure-stamp" "parallel.o*"; do \ find $(EXPORT) -name "$$n" -print0|xargs -0 echo rm -f; \ find $(EXPORT) -name "$$n" -print0|xargs -0 rm -f; \ done