From ca0793524ea8f33ab94b20677cf441da5da4b4e4 Mon Sep 17 00:00:00 2001 From: simonm Date: Fri, 28 Nov 1997 13:48:01 +0000 Subject: [PATCH] [project @ 1997-11-28 13:48:01 by simonm] prune #* and .#* when making source dist. --- mk/target.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/target.mk b/mk/target.mk index e32a4cc..4f4c0f3 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -676,7 +676,7 @@ dist-pre:: -rm -rf $(SRC_DIST_DIR) -rm -f $(SRC_DIST_NAME).tar.gz (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -exec $(MKDIRHIER) $(SRC_DIST_DIR)/{} \; \) ; ) - (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -type l -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; ) + (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -name "\#*" -prune -o -name ".\#*" -prune -o -type l -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; ) # # After having created a shadow distribution tree and copied/linked -- 1.7.10.4